Skip to content

Commit

Permalink
src: Adios .NET 7.
Browse files Browse the repository at this point in the history
  • Loading branch information
samuel-lucas6 committed May 4, 2024
1 parent 0ae5303 commit bd84f44
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 17 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/Geralt.Tests/Geralt.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks>
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<Platforms>AnyCPU</Platforms>
Expand Down
2 changes: 1 addition & 1 deletion src/Geralt/Geralt.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks>
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
<Version>3.0.1</Version>
<Authors>Samuel Lucas</Authors>
<Description>A modern cryptographic library for .NET 6+ based on libsodium and inspired by Monocypher.</Description>
Expand Down

0 comments on commit bd84f44

Please sign in to comment.