2021-09-27 12:42:46 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2023-10-12 18:33:06 +00:00
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2021-09-27 12:42:46 +00:00
|
|
|
<RootNamespace>Wabbajac.Hash.xxHash64.Benchmark</RootNamespace>
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-09-29 12:42:20 +00:00
|
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
|
|
|
|
<PackageReference Include="System.Data.HashFunction.xxHash" Version="2.0.0" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-09-29 12:42:20 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.Hashing.xxHash64\Wabbajack.Hashing.xxHash64.csproj" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|