blob: dba401767c914282fc742b514c687eb93f7e6d5a (
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>win-x64</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.json" Version="13.0.4" />
</ItemGroup>
</Project>
|