17 lines
580 B
XML
17 lines
580 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<SelfContained>true</SelfContained>
|
|
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="__Tests/**" />
|
|
</ItemGroup>
|
|
</Project>
|