| 12345678910111213141516171819202122232425 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>net10.0</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
- <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
- </PropertyGroup>
- <PropertyGroup>
- <PreserveCompilationContext>true</PreserveCompilationContext>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Shared.Rcl\Shared.Rcl.csproj"/>
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\.dockerignore">
- <Link>.dockerignore</Link>
- </Content>
- </ItemGroup>
- </Project>
|