18 lines
605 B
XML
18 lines
605 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Components\Components.csproj" />
|
|
<ProjectReference Include="..\Model\Model.csproj" />
|
|
<ProjectReference Include="..\Pages\Pages.csproj" />
|
|
<ProjectReference Include="..\Services\Services.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|