37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="Components\Layout\MainLayout.razor" />
|
|
<Content Remove="Components\Layout\NavMenu.razor" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Components\Layout\MainLayout.razor.css" />
|
|
<None Remove="Components\Layout\NavMenu.razor.css" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.4" />
|
|
<PackageReference Include="NLog.Web.AspNetCore" Version="6.1.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GPW.CORE.Data\GPW.CORE.Data.csproj" />
|
|
<ProjectReference Include="..\GPW.CORE.Shared\GPW.CORE.Shared.csproj" />
|
|
<ProjectReference Include="..\GPW.CORE.Smart10.Client\GPW.CORE.Smart10.Client.csproj" />
|
|
<ProjectReference Include="..\GPW.CORE\GPW.CORE.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- opzionale ma utile per publish/build integrato -->
|
|
<WasmBuildOnPublish>true</WasmBuildOnPublish>
|
|
</PropertyGroup>
|
|
</Project>
|