Remove space in "MS Build" (#32485)

pull/32486/head
Luke Latham 2024-05-01 07:44:21 -04:00 committed by GitHub
parent 02d26fe317
commit baa22924fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -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
<PropertyGroup>

View File

@ -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
<ItemGroup>

View File

@ -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
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>