2022-03-04 08:34:29 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2022-11-09 12:38:41 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Using Include="System.Console" Static="true" />
|
|
|
|
|
|
</ItemGroup>
|
2022-03-04 08:34:29 +00:00
|
|
|
|
|
2022-11-09 12:38:41 +00:00
|
|
|
|
<ItemGroup>
|
2022-12-03 11:16:08 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
2022-11-09 12:38:41 +00:00
|
|
|
|
</ItemGroup>
|
2022-03-04 08:34:29 +00:00
|
|
|
|
|
|
|
|
|
|
</Project>
|