summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-11-03 14:30:03 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-11-03 14:30:03 +0700
commit26e4f57a852f2345ed7c6697732706a2c33409b8 (patch)
tree130e04ebd92b459d52904c25ddc47ed98b34642b
parentAuthors/License cleanup (diff)
downloadBouncyCastle.NET-ed25519-26e4f57a852f2345ed7c6697732706a2c33409b8.tar.xz
net462 => net461
-rw-r--r--.gitlab-ci.yml7
-rw-r--r--crypto/src/BouncyCastle.Crypto.csproj2
-rw-r--r--crypto/test/BouncyCastle.Crypto.Tests.csproj2
3 files changed, 5 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml

index f20669e90..05eebfb3c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml
@@ -1,16 +1,15 @@ - stages: # List of stages for jobs, and their order of execution - test -net462-job: # This job runs in the test stage. +net461-job: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. script: - - "dotnet test --framework net462 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" + - "dotnet test --framework net461 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" net472-job: stage: test script: - - "dotnet test --framework net462 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" + - "dotnet test --framework net472 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" net60-job: stage: test diff --git a/crypto/src/BouncyCastle.Crypto.csproj b/crypto/src/BouncyCastle.Crypto.csproj
index ed11c1139..e337ceda1 100644 --- a/crypto/src/BouncyCastle.Crypto.csproj +++ b/crypto/src/BouncyCastle.Crypto.csproj
@@ -1,7 +1,7 @@ <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> - <TargetFrameworks>net6.0;netstandard2.0;net462</TargetFrameworks> + <TargetFrameworks>net6.0;netstandard2.0;net461</TargetFrameworks> <RootNamespace>Org.BouncyCastle</RootNamespace> <AssemblyOriginatorKeyFile>..\..\BouncyCastle.NET.snk</AssemblyOriginatorKeyFile> <SignAssembly>true</SignAssembly> diff --git a/crypto/test/BouncyCastle.Crypto.Tests.csproj b/crypto/test/BouncyCastle.Crypto.Tests.csproj
index f05cb1f05..9e9282f05 100644 --- a/crypto/test/BouncyCastle.Crypto.Tests.csproj +++ b/crypto/test/BouncyCastle.Crypto.Tests.csproj
@@ -1,7 +1,7 @@ <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> - <TargetFrameworks>net6.0;netcoreapp3.1;net472;net462</TargetFrameworks> + <TargetFrameworks>net6.0;netcoreapp3.1;net472;net461</TargetFrameworks> <IsPackable>false</IsPackable> <SignAssembly>false</SignAssembly> <EnableDefaultItems>false</EnableDefaultItems>