You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/doc-issue.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,12 +31,12 @@ If the issue is:
31
31
32
32
Check the .NET target framework(s) being used, and include the version number(s).
33
33
34
-
*[ ] .NET Core
34
+
*[ ] .NET
35
35
*[ ] .NET 5.0 or later
36
36
*[ ] .NET Framework
37
37
*[ ] .NET Standard
38
38
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.
40
40
41
41
<details>
42
42
<summary><strong>dotnet --info output</strong> or <strong>About VS info</strong></summary>
Copy file name to clipboardExpand all lines: aspnetcore/introduction-to-aspnet-core.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,7 +103,7 @@ ASP.NET Core is a cross-platform, high-performance, [open-source](https://github
103
103
* Build web apps and services, [Azure IoT (Internet of Things)](https://azure.microsoft.com/solutions/iot) apps, and mobile backends.
104
104
* Use your favorite development tools on Windows, macOS, and Linux.
105
105
* 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).
107
107
108
108
## Why choose ASP.NET Core?
109
109
@@ -131,24 +131,24 @@ ASP.NET Core integrates seamlessly with popular client-side frameworks and libra
131
131
132
132
## ASP.NET Core targeting .NET Framework
133
133
134
-
ASP.NET Core 2.x can target .NET Core or .NET Framework. ASP.NET Core apps targeting .NET Framework aren't cross-platform—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—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).
135
135
136
136
ASP.NET Core 2.x is supported on .NET Framework versions that implement .NET Standard 2.0:
137
137
138
138
* .NET Framework latest version is recommended.
139
139
* .NET Framework 4.6.1 or later.
140
140
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/).
142
142
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:
144
144
145
145
* Cross-platform. Runs on macOS, Linux, and Windows.
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.
Copy file name to clipboardExpand all lines: aspnetcore/log-mon/metrics/metrics.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ Replace the contents of `Program.cs` with the following code:
55
55
56
56
## View metrics with dotnet-counters
57
57
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).
59
59
60
60
If the [dotnet-counters](/dotnet/core/diagnostics/dotnet-counters) tool isn't installed, run the following command:
0 commit comments