-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathBlake.Bench.csproj
More file actions
33 lines (27 loc) · 1.44 KB
/
Copy pathBlake.Bench.csproj
File metadata and controls
33 lines (27 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<PlatformTarget>AnyCPU</PlatformTarget>
<TargetFrameworks>net8.0;net6.0;net472;</TargetFrameworks>
<NoWarn>$(NoWarn);NU1701</NoWarn> <!-- blake2s-net has netfx target only -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
<PackageReference Include="ByteTerrace.Maths.Cryptography.Blake2" Version="0.0.6" />
<PackageReference Include="Isopoh.Cryptography.Blake2b" Version="2.0.0" />
<PackageReference Include="Konscious.Security.Cryptography.Blake2" Version="1.1.0" />
<PackageReference Include="System.Data.HashFunction.Blake2" Version="2.0.0" />
<PackageReference Include="blake2s-net" Version="0.1.0" />
<PackageReference Include="Blake2Core" Version="1.0.0" />
</ItemGroup>
<ItemGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">
<PackageReference Include="NSec.Cryptography" Version="22.4.0" />
</ItemGroup>
<ItemGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">
<PackageReference Include="Blake3" Version="1.1.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Condition="$(DefineConstants.Contains('NUGETBENCH'))" Include="SauceControl.Blake2Fast" Version="2.0.0" />
<ProjectReference Condition="!$(DefineConstants.Contains('NUGETBENCH'))" Include="..\..\src\Blake2Fast\Blake2Fast.csproj" />
</ItemGroup>
</Project>