2018-06-20 19:42:56 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-06-16 19:11:38 +02:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2018-06-21 16:25:20 +02:00
|
|
|
|
<OutputType>Library</OutputType>
|
2018-08-25 18:38:43 +02:00
|
|
|
|
<TargetFrameworks>netcoreapp2.1;net46</TargetFrameworks>
|
2018-06-20 19:42:56 +02:00
|
|
|
|
<LangVersion>7.3</LangVersion>
|
2018-06-16 19:11:38 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-08-25 18:38:43 +02:00
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'net46' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);USE_RSA_CNG</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-08-25 00:01:27 +02:00
|
|
|
|
<ItemGroup>
|
2018-08-25 18:38:43 +02:00
|
|
|
|
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" Condition=" '$(TargetFramework)' == 'net46' " />
|
2018-08-25 00:01:27 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-06-16 19:11:38 +02:00
|
|
|
|
</Project>
|