-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnakigoe.csproj
22 lines (19 loc) · 928 Bytes
/
nakigoe.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<BlazorEnableCompression>true</BlazorEnableCompression>
<BlazorWebAssemblyEnableLinking>true</BlazorWebAssemblyEnableLinking>
<CompressionEnabled>true</CompressionEnabled>
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>full</TrimMode>
<!-- <WasmEnableThreads>true</WasmEnableThreads> -->
</PropertyGroup>
<ItemGroup>
<TrimmerRootDescriptor Include="linker.xml" />
<PackageReference Include="BlazorWasmPreRendering.Build" Version="3.1.0-preview.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" PrivateAssets="all" />
</ItemGroup>
</Project>