22 lines
778 B
XML
22 lines
778 B
XML
|
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net8.0</TargetFramework>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<RunAOTCompilation>true</RunAOTCompilation>
|
||
|
<WasmStripILAfterAOT>true</WasmStripILAfterAOT>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.6" />
|
||
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" PrivateAssets="all"/>
|
||
|
<PackageReference Include="Radzen.Blazor" Version="4.32.6" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\Overflow\Overflow.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|