Skip to content

Commit b5fde6d

Browse files
Copilotdanroth27
andcommitted
Replace .NET Core with .NET in remaining aspnetcore directories
Co-authored-by: danroth27 <1874516+danroth27@users.noreply.github.com>
1 parent 11952dc commit b5fde6d

29 files changed

Lines changed: 54 additions & 54 deletions

aspnetcore/blazor/call-web-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ In the app's `Program` file, call:
6161

6262
* <xref:Microsoft.Identity.Web.MicrosoftIdentityWebApiAuthenticationBuilder.EnableTokenAcquisitionToCallDownstreamApi%2A>: Enables token acquisition to call web APIs.
6363
* `AddDownstreamApi`: Microsoft Identity Web packages provide API to create a named downstream web service for making web API calls. <xref:Microsoft.Identity.Abstractions.IDownstreamApi> is injected into a server-side class, which is used to call <xref:Microsoft.Identity.Abstractions.IDownstreamApi.CallApiForUserAsync%2A> to obtain weather data from an external web API (`MinimalApiJwt` project).
64-
* <xref:Microsoft.Identity.Web.TokenCacheProviders.Distributed.DistributedTokenCacheAdapterExtension.AddDistributedTokenCaches%2A>: Adds the .NET Core distributed token caches to the service collection.
64+
* <xref:Microsoft.Identity.Web.TokenCacheProviders.Distributed.DistributedTokenCacheAdapterExtension.AddDistributedTokenCaches%2A>: Adds the .NET distributed token caches to the service collection.
6565
* <xref:Microsoft.Extensions.DependencyInjection.MemoryCacheServiceCollectionExtensions.AddDistributedMemoryCache%2A>: Adds a default implementation of <xref:Microsoft.Extensions.Caching.Distributed.IDistributedCache> that stores cache items in memory.
6666
* Configure the distributed token cache options (<xref:Microsoft.Identity.Web.TokenCacheProviders.Distributed.MsalDistributedTokenCacheAdapterOptions>):
6767
* In development for debugging purposes, you can disable the L1 cache by setting <xref:Microsoft.Identity.Web.TokenCacheProviders.Distributed.MsalDistributedTokenCacheAdapterOptions.DisableL1Cache%2A> to `true`. ***Be sure to reset it back to `false` for production.***

aspnetcore/blazor/components/integration-hosted-webassembly.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ uid: blazor/components/integration-hosted-webassembly
1616
:::moniker range="= aspnetcore-7.0 || = aspnetcore-5.0 || = aspnetcore-3.0 || = aspnetcore-3.1 || = aspnetcore-2.0"
1717

1818
> [!WARNING]
19-
> This version of ASP.NET Core is no longer supported. For more information, see the [.NET and .NET Core Support Policy](https://dotnet.microsoft.com/platform/support/policy/dotnet-core).
19+
> This version of ASP.NET Core is no longer supported. For more information, see the [.NET and .NET Support Policy](https://dotnet.microsoft.com/platform/support/policy/dotnet-core).
2020
2121
:::moniker-end
2222

aspnetcore/blazor/host-and-deploy/webassembly/github-pages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ The GitHub-hosted Ubuntu (latest) server has a version of the .NET SDK pre-insta
6363
1. Go to the [**Available Images** section of the `actions/runner-images` GitHub repository](https://github.com/actions/runner-images?tab=readme-ov-file#available-images).
6464
1. Locate the `ubuntu-latest` image, which is the first table row.
6565
1. Select the link in the `Included Software` column.
66-
1. Scroll down to the *.NET Tools* section to see the .NET Core SDK installed with the image.
66+
1. Scroll down to the *.NET Tools* section to see the .NET SDK installed with the image.
6767

6868
## Deployment notes
6969

aspnetcore/blazor/hosting-models.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ On the client, the Blazor script establishes the SignalR connection with the ser
6565
The Blazor Server hosting model offers several benefits:
6666

6767
* Download size is significantly smaller than when the Blazor WebAssembly hosting model is used, and the app loads much faster.
68-
* The app takes full advantage of server capabilities, including the use of .NET Core APIs.
69-
* .NET Core on the server is used to run the app, so existing .NET tooling, such as debugging, works as expected.
68+
* The app takes full advantage of server capabilities, including the use of .NET APIs.
69+
* .NET on the server is used to run the app, so existing .NET tooling, such as debugging, works as expected.
7070
* Thin clients are supported. For example, Blazor Server works with browsers that don't support WebAssembly and on resource-constrained devices.
7171
* The app's .NET/C# code base, including the app's component code, isn't served to clients.
7272

@@ -148,7 +148,7 @@ WebAssembly-rendered Razor components can use [native dependencies](xref:blazor/
148148

149149
:::moniker range="< aspnetcore-6.0"
150150

151-
Blazor WebAssembly includes support for trimming unused code from .NET Core framework libraries. For more information, see <xref:blazor/globalization-localization>.
151+
Blazor WebAssembly includes support for trimming unused code from .NET framework libraries. For more information, see <xref:blazor/globalization-localization>.
152152

153153
:::moniker-end
154154

aspnetcore/blazor/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ For apps that require third-party JavaScript libraries and access to browser API
182182

183183
## Code sharing and .NET Standard
184184

185-
Blazor implements the [.NET Standard](/dotnet/standard/net-standard), which enables Blazor projects to reference libraries that conform to .NET Standard specifications. .NET Standard is a formal specification of .NET APIs that are common across .NET implementations. .NET Standard class libraries can be shared across different .NET platforms, such as Blazor, .NET Framework, .NET Core, .NET Multi-platform App UI (.NET MAUI), Mono, and Unity.
185+
Blazor implements the [.NET Standard](/dotnet/standard/net-standard), which enables Blazor projects to reference libraries that conform to .NET Standard specifications. .NET Standard is a formal specification of .NET APIs that are common across .NET implementations. .NET Standard class libraries can be shared across different .NET platforms, such as Blazor, .NET Framework, .NET, .NET Multi-platform App UI (.NET MAUI), Mono, and Unity.
186186

187187
APIs that aren't applicable inside of a web browser (for example, accessing the file system, opening a socket, and threading) throw a <xref:System.PlatformNotSupportedException>.
188188

aspnetcore/blazor/performance/webassembly-browser-developer-tools-diagnostics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,5 +112,5 @@ In the following example, profiled methods are filtered to the app's namespace `
112112

113113
## Additional resources
114114

115-
* [What diagnostic tools are available in .NET Core?](/dotnet/core/diagnostics/)
115+
* [What diagnostic tools are available in .NET?](/dotnet/core/diagnostics/)
116116
* [.NET diagnostic tools](/dotnet/core/diagnostics/tools-overview)

aspnetcore/blazor/performance/webassembly-event-pipe-diagnostics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Your code should yield to main browser loop often to allow the trace to be colle
157157
## Additional resources
158158

159159
* [EventPipe](/dotnet/core/diagnostics/eventpipe) is a runtime component used to collect tracing data, similar to [ETW](/windows/win32/etw/event-tracing-portal) and [perf_events](https://wikipedia.org/wiki/Perf_%28Linux%29).
160-
* [What diagnostic tools are available in .NET Core?](/dotnet/core/diagnostics/)
160+
* [What diagnostic tools are available in .NET?](/dotnet/core/diagnostics/)
161161
* [.NET diagnostic tools](/dotnet/core/diagnostics/tools-overview)
162162
* [`dotnet/diagnostics` GitHub repository](https://github.com/dotnet/diagnostics)
163163
* [`Microsoft.Diagnostics.NETCore.Client` NuGet package](https://www.nuget.org/packages/Microsoft.Diagnostics.NETCore.Client)

aspnetcore/blazor/performance/webassembly-runtime-performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,5 +102,5 @@ For more information, see [Configuring and hosting .NET WebAssembly applications
102102

103103
* <xref:blazor/performance/webassembly-browser-developer-tools>
104104
* <xref:blazor/performance/webassembly-event-pipe>
105-
* [What diagnostic tools are available in .NET Core?](/dotnet/core/diagnostics/)
105+
* [What diagnostic tools are available in .NET?](/dotnet/core/diagnostics/)
106106
* [.NET diagnostic tools](/dotnet/core/diagnostics/tools-overview)

aspnetcore/blazor/security/includes/troubleshoot-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ One approach to prevent lingering cookies and site data from interfering with te
9393

9494
### App upgrades
9595

96-
A functioning app may fail immediately after upgrading either the .NET Core SDK on the development machine or changing package versions within the app. In some cases, incoherent packages may break an app when performing major upgrades. Most of these issues can be fixed by following these instructions:
96+
A functioning app may fail immediately after upgrading either the .NET SDK on the development machine or changing package versions within the app. In some cases, incoherent packages may break an app when performing major upgrades. Most of these issues can be fixed by following these instructions:
9797

9898
1. Clear the local system's NuGet package caches by executing [`dotnet nuget locals all --clear`](/dotnet/core/tools/dotnet-nuget-locals) from a command shell.
9999
1. Delete the project's `bin` and `obj` folders.

aspnetcore/blazor/security/includes/troubleshoot-wasm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ One approach to prevent lingering cookies and site data from interfering with te
8383

8484
### App upgrades
8585

86-
A functioning app may fail immediately after upgrading either the .NET Core SDK on the development machine or changing package versions within the app. In some cases, incoherent packages may break an app when performing major upgrades. Most of these issues can be fixed by following these instructions:
86+
A functioning app may fail immediately after upgrading either the .NET SDK on the development machine or changing package versions within the app. In some cases, incoherent packages may break an app when performing major upgrades. Most of these issues can be fixed by following these instructions:
8787

8888
1. Clear the local system's NuGet package caches by executing [`dotnet nuget locals all --clear`](/dotnet/core/tools/dotnet-nuget-locals) from a command shell.
8989
1. Delete the project's `bin` and `obj` folders.

0 commit comments

Comments
 (0)