2021-04-29 08:02:24 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-04-08 15:12:09 -07:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-04-20 08:31:18 -07:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2021-04-29 08:02:24 -07:00
|
|
|
|
<PackageReference Include="NLog" Version="4.7.9" />
|
2021-04-08 15:12:09 -07:00
|
|
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20071.2" />
|
2021-04-28 18:27:42 -07:00
|
|
|
|
<PackageReference Include="System.Reactive" Version="5.0.0" />
|
2021-04-24 11:06:13 -07:00
|
|
|
|
<PackageReference Include="System.Runtime.Caching" Version="6.0.0-preview.1.21102.12" />
|
2021-04-08 15:12:09 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2021-04-29 08:02:24 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Update="Program.cs">
|
|
|
|
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="NLog.config">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2021-04-08 15:12:09 -07:00
|
|
|
|
</Project>
|