20 lines
646 B
XML
20 lines
646 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
|
|
<RootNamespace>HotMap</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\BlazorSvgComponents\BlazorSvgComponents.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<ClientAssetsRestoreCommand>pnpm install</ClientAssetsRestoreCommand>
|
|
<ClientAssetsBuildCommand>pwsh build.ps1</ClientAssetsBuildCommand>
|
|
</PropertyGroup>
|
|
</Project>
|