summary refs log tree commit diff
path: root/crypto
diff options
context:
space:
mode:
authorOren Novotny <oren@novotny.org>2019-08-06 09:51:49 -0400
committerOren Novotny <oren@novotny.org>2019-08-06 09:51:49 -0400
commit04505d3ecf29323a42ef3af6dfc272b43abfb7db (patch)
tree6e4cb24b8b0e9edc14d91d368a1948e7a795b131 /crypto
parentRemove netstandard1 targets as they broke the build with missing Array.Copy o... (diff)
downloadBouncyCastle.NET-ed25519-04505d3ecf29323a42ef3af6dfc272b43abfb7db.tar.xz
Bump to .NET Core 2.1 as that's the earliest supported
Diffstat (limited to 'crypto')
-rw-r--r--crypto/test/crypto.test.csproj8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/test/crypto.test.csproj b/crypto/test/crypto.test.csproj
index 58f6a12b0..535e8c685 100644
--- a/crypto/test/crypto.test.csproj
+++ b/crypto/test/crypto.test.csproj
@@ -1,6 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <TargetFrameworks>netcoreapp2.0;net462</TargetFrameworks>
+    <TargetFrameworks>netcoreapp2.1;net462</TargetFrameworks>
     <DefineConstants>$(DefineConstants);LIB</DefineConstants>
     <AssemblyOriginatorKeyFile>..\..\BouncyCastle.snk</AssemblyOriginatorKeyFile>
     <SignAssembly>true</SignAssembly>
@@ -12,9 +12,9 @@
     <EmbeddedResource Include="data\**\*.*" Exclude="**\README.txt" />
   </ItemGroup>
   <ItemGroup>
-    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
-    <PackageReference Include="NUnit" Version="3.10.1" />
-    <PackageReference Include="NUnit3TestAdapter" Version="3.10.0" />
+    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
+    <PackageReference Include="NUnit" Version="3.12.0" />
+    <PackageReference Include="NUnit3TestAdapter" Version="3.13.0" />
   </ItemGroup>
   <ItemGroup>
     <ProjectReference Include="..\src\crypto.csproj" />