26 lines
819 B
XML
26 lines
819 B
XML
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
|
|
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
|
|
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="MainLayout.razor" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GPW.CORE.Shared\GPW.CORE.Shared.csproj" />
|
|
<ProjectReference Include="..\GPW.CORE\GPW.CORE.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|