blob: 9aef20e8673cc9d9f038e78652ad664e692f9cd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<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> <!-- musl for static -->
<StaticExecutable>true</StaticExecutable>
<StripSymbols>true</StripSymbols>
<InvariantGlobalization>true</InvariantGlobalization> <!-- removes ICU dep -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
</Project>
|