Remove space in "MS Build" (#32485)
parent
02d26fe317
commit
baa22924fb
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue