servicepoint-tanks/tanks-backend/TanksServer/TanksServer.csproj

36 lines
1.2 KiB
XML
Raw Normal View History

2024-04-21 12:38:03 +02:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2024-05-13 21:19:50 +02:00
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2024-04-21 12:38:03 +02:00
<PropertyGroup>
<PublishAot>true</PublishAot>
2024-05-13 21:19:50 +02:00
<IsAotCompatible>true</IsAotCompatible>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<PropertyGroup>
<AnalysisMode>Recommended</AnalysisMode>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>CA1805,CA1848</NoWarn>
2024-04-21 12:38:03 +02:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DotNext.Threading" Version="5.3.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.4" />
2024-04-21 12:38:03 +02:00
</ItemGroup>
<ItemGroup>
2024-04-21 14:34:45 +02:00
<None Include="./assets/**" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="Always"/>
2024-04-21 12:38:03 +02:00
</ItemGroup>
2024-05-13 21:50:59 +02:00
<ItemGroup>
<ProjectReference Include="..\servicepoint\servicepoint2-binding-cs\src\ServicePoint2.csproj" />
</ItemGroup>
2024-04-21 12:38:03 +02:00
</Project>