-
Notifications
You must be signed in to change notification settings - Fork 51
/
SecurityDriven.Inferno.csproj
54 lines (48 loc) · 2.37 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
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;netcoreapp3.1;net462;netstandard2.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<RootNamespace>SecurityDriven.Inferno</RootNamespace>
<Version>1.6.6.0</Version>
<Company>https://SecurityDriven.NET/inferno</Company>
<PackageId>Inferno</PackageId>
<Authors>Stan Drapkin</Authors>
<Copyright>Copyright (c) 2024 Stan Drapkin</Copyright>
<Description>Modern, free, open-source, professionally audited .NET crypto library.</Description>
<PackageProjectUrl>https://securitydriven.net/inferno/</PackageProjectUrl>
<PackageTags>crypto cryptography encryption security</PackageTags>
<AssemblyName>SecurityDriven.Inferno</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/sdrapkin/SecurityDriven.Inferno</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIconUrl>https://securitydriven.net/favicon.ico</PackageIconUrl>
<PackageReleaseNotes>.NET 8.0 LTS added as another target.
Dependencies updated.</PackageReleaseNotes>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Inferno.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
<Nullable>warnings</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<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 Condition="$(TargetFramework) == 'netstandard2.0' OR $(TargetFramework) == 'net462'">
<PackageReference Include="System.Numerics.Vectors" Version="4.6.0" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework) == 'netstandard2.0' OR $(TargetFramework) == 'netcoreapp3.1'">
<PackageReference Include="System.Security.Cryptography.Cng" Version="5.0.0" />
<PackageReference Include="System.Formats.Asn1" Version="9.0.0" />
</ItemGroup>
</Project>