diff options
author | royb <roy.basmacier@primekey.com> | 2022-02-03 12:51:52 -0500 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-06-23 21:58:04 +0700 |
commit | 004de388d03ebfc6734d4a613f5114ceb8f7a570 (patch) | |
tree | c796413a7589c47548c15f35ec4b27f4b17fe6a8 /crypto/test/BouncyCastle.Crypto.Tests.csproj | |
parent | New build organization (diff) | |
download | BouncyCastle.NET-ed25519-004de388d03ebfc6734d4a613f5114ceb8f7a570.tar.xz |
Initial merge of PQC port
Diffstat (limited to 'crypto/test/BouncyCastle.Crypto.Tests.csproj')
-rw-r--r-- | crypto/test/BouncyCastle.Crypto.Tests.csproj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/test/BouncyCastle.Crypto.Tests.csproj b/crypto/test/BouncyCastle.Crypto.Tests.csproj index 2af17b6d7..056ac1550 100644 --- a/crypto/test/BouncyCastle.Crypto.Tests.csproj +++ b/crypto/test/BouncyCastle.Crypto.Tests.csproj @@ -1,19 +1,19 @@ <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> - <TargetFrameworks>net462;net6.0;netcoreapp3.1</TargetFrameworks> + <TargetFrameworks>net6.0;netcoreapp3.1;net462</TargetFrameworks> <IsPackable>false</IsPackable> <AssemblyOriginatorKeyFile>..\..\BouncyCastle.snk</AssemblyOriginatorKeyFile> <SignAssembly>true</SignAssembly> <EnableDefaultItems>false</EnableDefaultItems> - <NoWarn>1591;618;672</NoWarn> + <NoWarn>1591</NoWarn> </PropertyGroup> - <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net462|AnyCPU'"> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <DefineConstants>DEBUG;TRACE</DefineConstants> </PropertyGroup> - <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net462|AnyCPU'"> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> <DefineConstants>DEBUG;TRACE</DefineConstants> </PropertyGroup> |