| 1234567891011121314151617181920 |
- <Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
- <PropertyGroup>
- <TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <StaticWebAssetBasePath>WasmRemoteAuthentication</StaticWebAssetBasePath>
- </PropertyGroup>
- <PropertyGroup Condition="'$(TestTrimmedOrMultithreadingApps)' == 'true'">
- <!-- Avoid spending time brotli compression publish output.-->
- <_BlazorBrotliCompressionLevel>NoCompression</_BlazorBrotliCompressionLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="Microsoft.AspNetCore.Components.WebAssembly" />
- <Reference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" />
- </ItemGroup>
- </Project>
|