33 lines
1.0 KiB
XML
33 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
|
|
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
|
|
<RootNamespace>MP.MON.Client</RootNamespace>
|
|
<AssemblyName>$(AssemblyName.Replace(' ', '_'))</AssemblyName>
|
|
<RunAOTCompilation>true</RunAOTCompilation>
|
|
<WasmStripILAfterAOT>true</WasmStripILAfterAOT>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="compilerconfig.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="compilerconfig.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.13" />
|
|
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="2.1.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\MP.Data\MP.Data.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|