blob: d5a2493e40b573cb9dafe9a6006923c5676c2ded (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<IsAotCompatible>true</IsAotCompatible>
<RuntimeIdentifier>linux-musl-x64</RuntimeIdentifier>
<StripSymbols>true</StripSymbols>
<InvariantGlobalization>true</InvariantGlobalization>
<StaticExecutable>true</StaticExecutable>
<CppCompilerAndLinker>clang-wrapper</CppCompilerAndLinker>
</PropertyGroup>
</Project>
|