MissnationBlazor/MissNationBlazorWASM/Server/MissNationBlazorWASM.Server...

25 lines
694 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.10" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Client\MissNationBlazorWASM.Client.csproj" />
<ProjectReference Include="..\Shared\MissNationBlazorWASM.Shared.csproj" />
</ItemGroup>
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<WasmEnableSIMD>false</WasmEnableSIMD>
</PropertyGroup>
</Project>