2021-06-15 03:39:17 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-09-27 12:42:46 +00:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-06-15 03:39:17 +00:00
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-10-28 12:17:33 +00:00
|
|
|
<PackageReference Include="FsCheck" Version="3.0.0-beta1" />
|
|
|
|
<PackageReference Include="FsCheck.Xunit" Version="3.0.0-beta1" />
|
2021-11-13 13:52:15 +00:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0-preview-20211109-03" />
|
2021-10-28 12:17:33 +00:00
|
|
|
<PackageReference Include="System.Data.HashFunction.xxHash" Version="2.0.0" />
|
|
|
|
<PackageReference Include="xunit" Version="2.4.2-pre.12" />
|
2021-06-15 03:39:17 +00:00
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2021-07-31 03:04:25 +00:00
|
|
|
<PackageReference Include="coverlet.collector" Version="3.1.0">
|
2021-06-15 03:39:17 +00:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-10-28 12:17:33 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.Hashing.xxHash64\Wabbajack.Hashing.xxHash64.csproj" />
|
2021-06-15 03:39:17 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|