RackPeek.Web.csproj 733 B

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net10.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
  7. <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <PreserveCompilationContext>true</PreserveCompilationContext>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\Shared.Rcl\Shared.Rcl.csproj"/>
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Content Include="..\.dockerignore">
  17. <Link>.dockerignore</Link>
  18. </Content>
  19. </ItemGroup>
  20. </Project>