18 lines
681 B
XML
18 lines
681 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net472</TargetFramework>
|
||
|
|
<LangVersion>latest</LangVersion>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<IsPackable>false</IsPackable>
|
||
|
|
</PropertyGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
|
||
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||
|
|
<PackageReference Include="xunit" Version="2.9.2" />
|
||
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" PrivateAssets="all" />
|
||
|
|
</ItemGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<Compile Include="..\Prophet.CoopWithDsh\SnapshotModels.cs" Link="SnapshotModels.cs" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|