forked from sdrapkin/SecurityDriven.Inferno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SecurityDriven.Inferno.csproj
42 lines (36 loc) · 1.61 KB
/
SecurityDriven.Inferno.csproj
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
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp2.1;net462</TargetFrameworks>
<RootNamespace>SecurityDriven.Inferno</RootNamespace>
<Version>1.5.3.0</Version>
<Company>http://SecurityDriven.NET/inferno</Company>
<PackageId>Inferno</PackageId>
<Authors>Stan Drapkin</Authors>
<Copyright>Copyright (c) 2018 Stan Drapkin</Copyright>
<Description>Modern, free, open-source, professionally audited .NET crypto library.</Description>
<PackageProjectUrl>http://securitydriven.net/inferno/</PackageProjectUrl>
<PackageTags>crypto cryptography encryption security</PackageTags>
<AssemblyName>SecurityDriven.Inferno</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp2.1|AnyCPU'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Cipher\AesCtrCryptoTransform2.cs" />
<Compile Remove="Cipher\AesPool.cs" />
<Compile Remove="Mac\HMAC2_old.cs" />
<Compile Remove="Mac\HMAC3.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Include="System.Security.Cryptography.Cng" Version="4.5.0" Condition="'$(TargetFramework)' == 'netcoreapp2.1'" />
</ItemGroup>
</Project>