Skip to content

Commit 879a032

Browse files
authored
Replace .NET Core with .NET naming throughout documentation (#35800)
1 parent 6a01f80 commit 879a032

File tree

101 files changed

+300
-310
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+300
-310
lines changed

.github/ISSUE_TEMPLATE/doc-issue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Check the .NET target framework(s) being used, and include the version number(s)
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/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/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 libraries. For more information, see <xref:blazor/globalization-localization>.
152152

153153
:::moniker-end
154154

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.

aspnetcore/blazor/security/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ Permissible authentication values for the `{AUTHENTICATION}` placeholder are sho
180180

181181
:::moniker-end
182182

183-
For more information, see the [`dotnet new`](/dotnet/core/tools/dotnet-new) command in the .NET Core Guide.
183+
For more information, see the [`dotnet new`](/dotnet/core/tools/dotnet-new) command in the .NET Guide.
184184

185185
# [.NET CLI](#tab/net-cli/)
186186

@@ -219,7 +219,7 @@ Permissible authentication values for the `{AUTHENTICATION}` placeholder are sho
219219

220220
For more information:
221221

222-
* See the [`dotnet new`](/dotnet/core/tools/dotnet-new) command in the .NET Core Guide.
222+
* See the [`dotnet new`](/dotnet/core/tools/dotnet-new) command in the .NET Guide.
223223
* Execute the help command for the template in a command shell:
224224

225225
```dotnetcli

aspnetcore/blazor/security/webassembly/additional-scenarios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1544,7 +1544,7 @@ For more information, see [`AuthenticationService.ts` in the `dotnet/aspnetcore`
15441544

15451545
If an app requires a custom version of the [Microsoft Authentication Library for JavaScript (`MSAL.js`)](https://www.npmjs.com/package/@azure/msal-browser), perform the following steps:
15461546
1547-
1. Confirm the system has the latest developer .NET SDK or obtain and install the latest developer SDK from [.NET Core SDK: Installers and Binaries](https://github.com/dotnet/installer#installers-and-binaries). Configuration of internal NuGet feeds isn't required for this scenario.
1547+
1. Confirm the system has the latest developer .NET SDK or obtain and install the latest developer SDK from [.NET SDK: Installers and Binaries](https://github.com/dotnet/sdk#installing-the-sdk). Configuration of internal NuGet feeds isn't required for this scenario.
15481548
1. Set up the `dotnet/aspnetcore` GitHub repository for development following the documentation at [Build ASP.NET Core from Source](https://github.com/dotnet/aspnetcore/blob/main/docs/BuildFromSource.md). Fork and clone or download a ZIP archive of the [`dotnet/aspnetcore` GitHub repository](https://github.com/dotnet/aspnetcore).
15491549
1. Open the `src/Components/WebAssembly/Authentication.Msal/src/Interop/package.json` file and set the desired version of `@azure/msal-browser`. For a list of released versions, visit the [`@azure/msal-browser` npm website](https://www.npmjs.com/package/@azure/msal-browser) and select the **Versions** tab.
15501550
1. Build the `Authentication.Msal` project in the `src/Components/WebAssembly/Authentication.Msal/src` folder with the `yarn build` command in a command shell.

aspnetcore/blazor/security/webassembly/hosted-with-identity-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The output location specified with the optional `-o|--output` option creates a p
6969

7070
Avoid using dashes (`-`) in the project name that break the formation of the OIDC app identifier. Logic in the Blazor WebAssembly project template uses the project name for an OIDC app identifier in the solution's configuration, and dashes aren't permitted in an OIDC app identifier. Pascal case (`BlazorSample`) or underscores (`Blazor_Sample`) are acceptable alternatives.
7171

72-
For more information, see the [`dotnet new`](/dotnet/core/tools/dotnet-new) command in the .NET Core Guide.
72+
For more information, see the [`dotnet new`](/dotnet/core/tools/dotnet-new) command in the .NET Guide.
7373

7474
---
7575

aspnetcore/blazor/security/webassembly/standalone-with-authentication-library.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ dotnet new blazorwasm -au Individual -o {PROJECT NAME}
7777

7878
The output location specified with the `-o|--output` option creates a project folder if it doesn't exist and becomes part of the project's name.
7979

80-
For more information, see the [`dotnet new`](/dotnet/core/tools/dotnet-new) command in the .NET Core Guide.
80+
For more information, see the [`dotnet new`](/dotnet/core/tools/dotnet-new) command in the .NET Guide.
8181

8282
---
8383

0 commit comments

Comments
 (0)