From 56b3dc54f2d632d3dfb0ee28a57d82d4166c4dcb Mon Sep 17 00:00:00 2001 From: Daniel Boos Date: Tue, 3 Dec 2024 11:16:42 +0100 Subject: [PATCH 1/2] feat: updated packages --- src/Directory.Build.props | 2 +- src/Directory.Build.targets | 2 +- .../RapidIntegrationTesting.Utility.csproj | 2 +- .../RapidIntegrationTesting.xUnit.csproj | 2 +- .../RapidIntegrationTesting.csproj | 6 +++--- .../RapidIntegrationTesting.Integration.Tests.csproj | 10 +++++----- .../Testing.Integration.TestWebApi.csproj | 6 +++--- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 8b96cd7..d7f7073 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -2,7 +2,7 @@ - net8.0 + net9.0 enable enable true diff --git a/src/Directory.Build.targets b/src/Directory.Build.targets index 17a31c4..01c2c20 100644 --- a/src/Directory.Build.targets +++ b/src/Directory.Build.targets @@ -1,7 +1,7 @@ - + diff --git a/src/RapidIntegrationTesting.Utility/RapidIntegrationTesting.Utility.csproj b/src/RapidIntegrationTesting.Utility/RapidIntegrationTesting.Utility.csproj index 14e2764..b164299 100644 --- a/src/RapidIntegrationTesting.Utility/RapidIntegrationTesting.Utility.csproj +++ b/src/RapidIntegrationTesting.Utility/RapidIntegrationTesting.Utility.csproj @@ -9,7 +9,7 @@ - + diff --git a/src/RapidIntegrationTesting.xUnit/RapidIntegrationTesting.xUnit.csproj b/src/RapidIntegrationTesting.xUnit/RapidIntegrationTesting.xUnit.csproj index e864f01..69a575c 100644 --- a/src/RapidIntegrationTesting.xUnit/RapidIntegrationTesting.xUnit.csproj +++ b/src/RapidIntegrationTesting.xUnit/RapidIntegrationTesting.xUnit.csproj @@ -9,7 +9,7 @@ - + diff --git a/src/RapidIntegrationTesting/RapidIntegrationTesting.csproj b/src/RapidIntegrationTesting/RapidIntegrationTesting.csproj index 0cc2ec5..9497770 100644 --- a/src/RapidIntegrationTesting/RapidIntegrationTesting.csproj +++ b/src/RapidIntegrationTesting/RapidIntegrationTesting.csproj @@ -5,9 +5,9 @@ - - - + + + diff --git a/test/RapidIntegrationTesting.Integration.Tests/RapidIntegrationTesting.Integration.Tests.csproj b/test/RapidIntegrationTesting.Integration.Tests/RapidIntegrationTesting.Integration.Tests.csproj index acd2342..7944e61 100644 --- a/test/RapidIntegrationTesting.Integration.Tests/RapidIntegrationTesting.Integration.Tests.csproj +++ b/test/RapidIntegrationTesting.Integration.Tests/RapidIntegrationTesting.Integration.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable @@ -9,10 +9,10 @@ - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/test/Testing.Integration.TestWebApi/Testing.Integration.TestWebApi.csproj b/test/Testing.Integration.TestWebApi/Testing.Integration.TestWebApi.csproj index f261e89..438dc66 100644 --- a/test/Testing.Integration.TestWebApi/Testing.Integration.TestWebApi.csproj +++ b/test/Testing.Integration.TestWebApi/Testing.Integration.TestWebApi.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable @@ -9,8 +9,8 @@ - - + + \ No newline at end of file From 0fb963a0a9270eda1174f76b0eacf8edfeeffa13 Mon Sep 17 00:00:00 2001 From: Daniel Boos Date: Tue, 3 Dec 2024 11:31:06 +0100 Subject: [PATCH 2/2] fix: workflow to use net9 --- .github/workflows/pr.yml | 7 ++++++- .github/workflows/publish.yml | 5 +++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index fc5925d..2cbd389 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -14,10 +14,15 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout all commits - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 + - name: Setup dotnet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '9' + - name: Restore run: dotnet restore diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d075742..c0aa1f5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,6 +13,11 @@ jobs: with: fetch-depth: 0 + - name: Setup dotnet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '9' + - name: Pack run: dotnet pack --configuration Release -o nuget-packages