Skip to content

Commit 9342d39

Browse files
Copilotdanroth27
andcommitted
Replace .NET Core with .NET in remaining files and validate completion
Co-authored-by: danroth27 <1874516+danroth27@users.noreply.github.com>
1 parent b5fde6d commit 9342d39

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/ISSUE_TEMPLATE/doc-issue.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ If the issue is:
3131

3232
Check the .NET target framework(s) being used, and include the version number(s).
3333

34-
* [ ] .NET Core
34+
* [ ] .NET
3535
* [ ] .NET 5.0 or later
3636
* [ ] .NET Framework
3737
* [ ] .NET Standard
3838

39-
If using the .NET Core SDK, include `dotnet --info` output. If using .NET Framework without the .NET Core SDK, include info from Visual Studio's **Help** > **About Microsoft Visual Studio** dialog.
39+
If using the .NET SDK, include `dotnet --info` output. If using .NET Framework without the .NET SDK, include info from Visual Studio's **Help** > **About Microsoft Visual Studio** dialog.
4040

4141
<details>
4242
<summary><strong>dotnet --info output</strong> or <strong>About VS info</strong></summary>

aspnetcore/introduction-to-aspnet-core.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ ASP.NET Core is a cross-platform, high-performance, [open-source](https://github
103103
* Build web apps and services, [Azure IoT (Internet of Things)](https://azure.microsoft.com/solutions/iot) apps, and mobile backends.
104104
* Use your favorite development tools on Windows, macOS, and Linux.
105105
* Deploy to the cloud or on-premises.
106-
* Run on [.NET Core or .NET Framework](/dotnet/articles/standard/choosing-core-framework-server).
106+
* Run on [.NET or .NET Framework](/dotnet/articles/standard/choosing-core-framework-server).
107107

108108
## Why choose ASP.NET Core?
109109

@@ -131,24 +131,24 @@ ASP.NET Core integrates seamlessly with popular client-side frameworks and libra
131131

132132
## ASP.NET Core targeting .NET Framework
133133

134-
ASP.NET Core 2.x can target .NET Core or .NET Framework. ASP.NET Core apps targeting .NET Framework aren't cross-platform&mdash;they run on Windows only. Generally, ASP.NET Core 2.x is made up of [.NET Standard](/dotnet/standard/net-standard) libraries. Libraries written with .NET Standard 2.0 run on any [.NET platform that implements .NET Standard 2.0](/dotnet/standard/net-standard#net-implementation-support).
134+
ASP.NET Core 2.x can target .NET or .NET Framework. ASP.NET Core apps targeting .NET Framework aren't cross-platform&mdash;they run on Windows only. Generally, ASP.NET Core 2.x is made up of [.NET Standard](/dotnet/standard/net-standard) libraries. Libraries written with .NET Standard 2.0 run on any [.NET platform that implements .NET Standard 2.0](/dotnet/standard/net-standard#net-implementation-support).
135135

136136
ASP.NET Core 2.x is supported on .NET Framework versions that implement .NET Standard 2.0:
137137

138138
* .NET Framework latest version is recommended.
139139
* .NET Framework 4.6.1 or later.
140140

141-
ASP.NET Core 3.0 or later only run on .NET Core. For more details regarding this change, see [A first look at changes coming in ASP.NET Core 3.0](https://blogs.msdn.microsoft.com/webdev/2018/10/29/a-first-look-at-changes-coming-in-asp-net-core-3-0/).
141+
ASP.NET Core 3.0 or later only run on .NET. For more details regarding this change, see [A first look at changes coming in ASP.NET Core 3.0](https://blogs.msdn.microsoft.com/webdev/2018/10/29/a-first-look-at-changes-coming-in-asp-net-core-3-0/).
142142

143-
There are several advantages to targeting .NET Core, and these advantages increase with each release. Some advantages of .NET Core over .NET Framework include:
143+
There are several advantages to targeting .NET, and these advantages increase with each release. Some advantages of .NET over .NET Framework include:
144144

145145
* Cross-platform. Runs on macOS, Linux, and Windows.
146146
* Improved performance
147147
* [Side-by-side versioning](/dotnet/standard/choosing-core-framework-server#side-by-side-net-versions-per-application-level)
148148
* New APIs
149149
* Open source
150150

151-
To help close the API gap from .NET Framework to .NET Core, the [Windows Compatibility Pack](/dotnet/core/porting/windows-compat-pack) made thousands of Windows-only APIs available in .NET Core. These APIs weren't available in .NET Core 1.x.
151+
To help close the API gap from .NET Framework to .NET, the [Windows Compatibility Pack](/dotnet/core/porting/windows-compat-pack) made thousands of Windows-only APIs available in .NET. These APIs weren't available in .NET 1.x.
152152

153153
## Recommended learning path
154154

aspnetcore/log-mon/metrics/metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Replace the contents of `Program.cs` with the following code:
5555

5656
## View metrics with dotnet-counters
5757

58-
[dotnet-counters](/dotnet/core/diagnostics/dotnet-counters) is a command-line tool that can view live metrics for .NET Core apps on demand. It doesn't require setup, making it useful for ad-hoc investigations or verifying that metric instrumentation is working. It works with both <xref:System.Diagnostics.Metrics?displayProperty=nameWithType> based APIs and [EventCounters](/dotnet/core/diagnostics/event-counters).
58+
[dotnet-counters](/dotnet/core/diagnostics/dotnet-counters) is a command-line tool that can view live metrics for .NET apps on demand. It doesn't require setup, making it useful for ad-hoc investigations or verifying that metric instrumentation is working. It works with both <xref:System.Diagnostics.Metrics?displayProperty=nameWithType> based APIs and [EventCounters](/dotnet/core/diagnostics/event-counters).
5959

6060
If the [dotnet-counters](/dotnet/core/diagnostics/dotnet-counters) tool isn't installed, run the following command:
6161

0 commit comments

Comments
 (0)