|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <OutputType>Exe</OutputType> |
5 | | - <PlatformTarget>AnyCPU</PlatformTarget> |
6 | | - <TargetFrameworks>netcoreapp3.0;netcoreapp2.1;netcoreapp2.0;netcoreapp1.1;net46</TargetFrameworks> |
7 | | - <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
8 | | - <DebugType>pdbonly</DebugType> |
9 | | - <DebugSymbols>true</DebugSymbols> |
10 | | - <LangVersion>latest</LangVersion> |
11 | | - <TieredCompilation>false</TieredCompilation> |
12 | | - </PropertyGroup> |
13 | | - |
14 | | - <ItemGroup Condition="'$(TargetFramework)'=='netcoreapp2.1' Or '$(TargetFramework)'=='netcoreapp3.0'"> |
15 | | - <PackageReference Include="libsodium" Version="1.0.16" /> |
16 | | - <PackageReference Include="NSec.Cryptography" Version="18.6.0" /> |
17 | | - </ItemGroup> |
18 | | - |
19 | | - <ItemGroup Condition="'$(TargetFramework)'=='netcoreapp2.1'"> |
20 | | - <PackageReference Include="System.Runtime.Intrinsics.Experimental" Version="4.5.0-rc1" /> |
21 | | - </ItemGroup> |
22 | | - |
23 | | - <ItemGroup Condition="'$(TargetFramework)'!='netcoreapp1.1'"> |
24 | | - <PackageReference Include="blake2s-net" Version="0.1.0" /> |
25 | | - </ItemGroup> |
26 | | - |
27 | | - <ItemGroup Condition="'$(TargetFramework)'!='net46'"> |
28 | | - <PackageReference Include="Blake2Core" Version="1.0.0" /> |
29 | | - </ItemGroup> |
30 | | - |
31 | | - <ItemGroup> |
32 | | - <PackageReference Include="BenchmarkDotNet" Version="0.10.14" /> |
33 | | - <PackageReference Include="Isopoh.Cryptography.Blake2b" Version="1.0.8" /> |
34 | | - <PackageReference Include="Konscious.Security.Cryptography.Blake2" Version="1.0.9" /> |
35 | | - <PackageReference Include="System.Data.HashFunction.Blake2" Version="2.0.0" /> |
36 | | - <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.5.0" /> |
37 | | - </ItemGroup> |
38 | | - |
39 | | - <ItemGroup> |
40 | | - <ProjectReference Include="..\..\src\Blake2Fast\Blake2Fast.csproj" /> |
41 | | - </ItemGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <OutputType>Exe</OutputType> |
| 5 | + <PlatformTarget>AnyCPU</PlatformTarget> |
| 6 | + <TieredCompilation>false</TieredCompilation> |
| 7 | + <TargetFrameworks>netcoreapp3.0;netcoreapp2.1;net472</TargetFrameworks> |
| 8 | + </PropertyGroup> |
| 9 | + |
| 10 | + <ItemGroup> |
| 11 | + <PackageReference Include="BenchmarkDotNet" Version="0.11.5" /> |
| 12 | + <PackageReference Include="ByteTerrace.Maths.Cryptography.Blake2" Version="0.0.4" /> |
| 13 | + <PackageReference Include="Isopoh.Cryptography.Blake2b" Version="1.1.2" /> |
| 14 | + <PackageReference Include="Konscious.Security.Cryptography.Blake2" Version="1.0.9" /> |
| 15 | + <PackageReference Include="System.Data.HashFunction.Blake2" Version="2.0.0" /> |
| 16 | + <PackageReference Include="blake2s-net" Version="0.1.0" /> |
| 17 | + </ItemGroup> |
| 18 | + |
| 19 | + <ItemGroup Condition="'$(TargetFramework)'!='net472'"> |
| 20 | + <PackageReference Include="Blake2Core" Version="1.0.0" /> |
| 21 | + <PackageReference Include="libsodium" Version="1.0.17.1" /> |
| 22 | + <PackageReference Include="NSec.Cryptography" Version="19.5.0" /> |
| 23 | + </ItemGroup> |
| 24 | + |
| 25 | + <ItemGroup> |
| 26 | + <ProjectReference Include="..\..\src\Blake2Fast\Blake2Fast.csproj" /> |
| 27 | + </ItemGroup> |
42 | 28 |
|
43 | 29 | </Project> |
0 commit comments