From bd84f4407ac1aa5eed91c7f7b69be740a53f600a Mon Sep 17 00:00:00 2001 From: Samuel Lucas <63159663+samuel-lucas6@users.noreply.github.com> Date: Sat, 4 May 2024 11:23:14 +0100 Subject: [PATCH] src: Adios .NET 7. https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core --- .github/workflows/dotnet.yml | 15 --------------- src/Geralt.Tests/Geralt.Tests.csproj | 2 +- src/Geralt/Geralt.csproj | 2 +- 3 files changed, 2 insertions(+), 17 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 86c8e25..b86b6ff 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -20,17 +20,12 @@ jobs: with: dotnet-version: | 6.0.x - 7.0.x 8.0.x - run: dotnet --info - name: Test (.NET 8.0/Debug) run: dotnet test -f net8.0 -c Debug - name: Test (.NET 8.0/Release) run: dotnet test -f net8.0 -c Release - - name: Test (.NET 7.0/Debug) - run: dotnet test -f net7.0 -c Debug - - name: Test (.NET 7.0/Release) - run: dotnet test -f net7.0 -c Release - name: Test (.NET 6.0/Debug) run: dotnet test -f net6.0 -c Debug - name: Test (.NET 6.0/Release) @@ -48,17 +43,12 @@ jobs: with: dotnet-version: | 6.0.x - 7.0.x 8.0.x - run: dotnet --info - name: Test (.NET 8.0/Debug) run: dotnet test -f net8.0 -c Debug - name: Test (.NET 8.0/Release) run: dotnet test -f net8.0 -c Release - - name: Test (.NET 7.0/Debug) - run: dotnet test -f net7.0 -c Debug - - name: Test (.NET 7.0/Release) - run: dotnet test -f net7.0 -c Release - name: Test (.NET 6.0/Debug) run: dotnet test -f net6.0 -c Debug - name: Test (.NET 6.0/Release) @@ -76,17 +66,12 @@ jobs: with: dotnet-version: | 6.0.x - 7.0.x 8.0.x - run: dotnet --info - name: Test (.NET 8.0/Debug) run: dotnet test -f net8.0 -c Debug - name: Test (.NET 8.0/Release) run: dotnet test -f net8.0 -c Release - - name: Test (.NET 7.0/Debug) - run: dotnet test -f net7.0 -c Debug - - name: Test (.NET 7.0/Release) - run: dotnet test -f net7.0 -c Release - name: Test (.NET 6.0/Debug) run: dotnet test -f net6.0 -c Debug - name: Test (.NET 6.0/Release) diff --git a/src/Geralt.Tests/Geralt.Tests.csproj b/src/Geralt.Tests/Geralt.Tests.csproj index 82d03a5..4975ff9 100644 --- a/src/Geralt.Tests/Geralt.Tests.csproj +++ b/src/Geralt.Tests/Geralt.Tests.csproj @@ -1,7 +1,7 @@ - net8.0;net7.0;net6.0 + net8.0;net6.0 enable false AnyCPU diff --git a/src/Geralt/Geralt.csproj b/src/Geralt/Geralt.csproj index d9465a9..548e082 100644 --- a/src/Geralt/Geralt.csproj +++ b/src/Geralt/Geralt.csproj @@ -1,7 +1,7 @@ - net8.0;net7.0;net6.0 + net8.0;net6.0 3.0.1 Samuel Lucas A modern cryptographic library for .NET 6+ based on libsodium and inspired by Monocypher.