diff --git a/aspnetcore/blazor/host-and-deploy/webassembly.md b/aspnetcore/blazor/host-and-deploy/webassembly.md index 2daa67a0c9..2c05873789 100644 --- a/aspnetcore/blazor/host-and-deploy/webassembly.md +++ b/aspnetcore/blazor/host-and-deploy/webassembly.md @@ -67,7 +67,7 @@ For more information on [Mono](https://github.com/mono/mono)/WebAssembly MSBuild [Webcil](https://github.com/dotnet/runtime/blob/main/docs/design/mono/webcil.md) is a web-friendly packaging format for .NET assemblies designed to enable using Blazor WebAssembly in restrictive network environments. Webcil files use a standard WebAssembly wrapper, where the assemblies are deployed as WebAssembly files that use the standard `.wasm` file extension. -Webcil is the default packaging format when you publish a Blazor WebAssembly app. To disable the use of Webcil, set the following MS Build property in the app's project file: +Webcil is the default packaging format when you publish a Blazor WebAssembly app. To disable the use of Webcil, set the following MSBuild property in the app's project file: ```xml diff --git a/aspnetcore/fundamentals/target-aspnetcore.md b/aspnetcore/fundamentals/target-aspnetcore.md index 694048b132..da63d9c93e 100644 --- a/aspnetcore/fundamentals/target-aspnetcore.md +++ b/aspnetcore/fundamentals/target-aspnetcore.md @@ -90,7 +90,7 @@ Class libraries are rarely built to only support server-side apps. If the class dotnet new razorclasslib -s ``` -* Only provide a framework reference to ASP.NET Core in the library's project file in addition to any other required MS Build properties: +* Only provide a framework reference to ASP.NET Core in the library's project file in addition to any other required MSBuild properties: ```xml diff --git a/aspnetcore/migration/70-80.md b/aspnetcore/migration/70-80.md index 3abdb85872..f5a7440db3 100644 --- a/aspnetcore/migration/70-80.md +++ b/aspnetcore/migration/70-80.md @@ -322,7 +322,7 @@ Blazor WebAssembly apps are supported in .NET 8 without any code changes. Use th > [!IMPORTANT] > Using the preceding guidance, update the `Client`, `Server`, and `Shared` projects of the solution. -1. In the `.Client` project file (`.csproj`), add the following MS Build properties: +1. In the `.Client` project file (`.csproj`), add the following MSBuild properties: ```xml true