From b78cbeeb167858f1e13ad68a694aa64ecaf550f1 Mon Sep 17 00:00:00 2001 From: Mauro Servienti Date: Sat, 20 Apr 2024 06:30:48 +0200 Subject: [PATCH 1/2] Add .NET 8 as a target framework --- .../ServiceComposer.AspNetCore.Testing.csproj | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ServiceComposer.AspNetCore.Testing/ServiceComposer.AspNetCore.Testing.csproj b/src/ServiceComposer.AspNetCore.Testing/ServiceComposer.AspNetCore.Testing.csproj index e16c4c2..0cd7d77 100644 --- a/src/ServiceComposer.AspNetCore.Testing/ServiceComposer.AspNetCore.Testing.csproj +++ b/src/ServiceComposer.AspNetCore.Testing/ServiceComposer.AspNetCore.Testing.csproj @@ -1,7 +1,7 @@  - net6.0;net7.0 + net6.0;net7.0;net8.0 @@ -35,8 +35,12 @@ + + + + - + From 6a119a0c42f91637fbee63c1d16bea8cfc75fa14 Mon Sep 17 00:00:00 2001 From: Mauro Servienti Date: Sat, 20 Apr 2024 06:32:57 +0200 Subject: [PATCH 2/2] Add .NET8 to CI --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b520dc4..4bb1cf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,7 @@ jobs: dotnet-version: | 6.0.x 7.0.x + 8.0.x - name: Build run: dotnet build src --configuration Release - name: Tests @@ -51,10 +52,10 @@ jobs: if: startsWith(github.ref, 'refs/tags') runs-on: ubuntu-20.04 steps: - - name: Setup .NET 6 + - name: Setup .NET uses: actions/setup-dotnet@v4.0.0 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Download artifacts uses: actions/download-artifact@v4.1.5 with: