From cd76b0741c988d0bdf20f27aa59689d6fa6d4036 Mon Sep 17 00:00:00 2001 From: Colton Fussy <519596+Confusingboat@users.noreply.github.com> Date: Fri, 6 Dec 2024 12:37:13 -0600 Subject: [PATCH] Update target frameworks to net8.0 and net9.0 (#19) * chore: target only net8.0 and net9.0 * chore: update ci build workflow --- .github/workflows/build_and_test.yml | 4 ++-- .../Ephemerally.Azure.Cosmos.Xunit.csproj | 4 ++-- src/Ephemerally.Azure.Cosmos/Ephemerally.Azure.Cosmos.csproj | 4 ++-- src/Ephemerally.Azure/Ephemerally.Azure.csproj | 4 ++-- src/Ephemerally.Redis.Xunit/Ephemerally.Redis.Xunit.csproj | 4 ++-- src/Ephemerally.Redis/Ephemerally.Redis.csproj | 4 ++-- src/Ephemerally/Ephemerally.csproj | 4 ++-- .../Ephemerally.Azure.Cosmos.Tests.csproj | 2 +- tests/Ephemerally.Redis.Tests/Ephemerally.Redis.Tests.csproj | 2 +- tests/Ephemerally.Tests/Ephemerally.Tests.csproj | 2 +- 10 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 48ac252..353e352 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -34,7 +34,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 8 + dotnet-version: 9 dotnet-quality: ga - name: Restore dependencies @@ -97,7 +97,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 8 + dotnet-version: 9 dotnet-quality: ga - name: Restore dependencies diff --git a/src/Ephemerally.Azure.Cosmos.Xunit/Ephemerally.Azure.Cosmos.Xunit.csproj b/src/Ephemerally.Azure.Cosmos.Xunit/Ephemerally.Azure.Cosmos.Xunit.csproj index 1b540ce..2b0721c 100644 --- a/src/Ephemerally.Azure.Cosmos.Xunit/Ephemerally.Azure.Cosmos.Xunit.csproj +++ b/src/Ephemerally.Azure.Cosmos.Xunit/Ephemerally.Azure.Cosmos.Xunit.csproj @@ -1,10 +1,10 @@  - net6.0 + net8.0;net9.0 enable disable - latest + 13 false false diff --git a/src/Ephemerally.Azure.Cosmos/Ephemerally.Azure.Cosmos.csproj b/src/Ephemerally.Azure.Cosmos/Ephemerally.Azure.Cosmos.csproj index 82025df..707e184 100644 --- a/src/Ephemerally.Azure.Cosmos/Ephemerally.Azure.Cosmos.csproj +++ b/src/Ephemerally.Azure.Cosmos/Ephemerally.Azure.Cosmos.csproj @@ -1,10 +1,10 @@  - netstandard2.1 + net8.0;net9.0 enable disable - 11 + 13 diff --git a/src/Ephemerally.Azure/Ephemerally.Azure.csproj b/src/Ephemerally.Azure/Ephemerally.Azure.csproj index 1d93a86..bcefcb6 100644 --- a/src/Ephemerally.Azure/Ephemerally.Azure.csproj +++ b/src/Ephemerally.Azure/Ephemerally.Azure.csproj @@ -1,10 +1,10 @@  - netstandard2.1 + net8.0;net9.0 enable disable - 11 + 13 diff --git a/src/Ephemerally.Redis.Xunit/Ephemerally.Redis.Xunit.csproj b/src/Ephemerally.Redis.Xunit/Ephemerally.Redis.Xunit.csproj index 886ff38..4243601 100644 --- a/src/Ephemerally.Redis.Xunit/Ephemerally.Redis.Xunit.csproj +++ b/src/Ephemerally.Redis.Xunit/Ephemerally.Redis.Xunit.csproj @@ -1,10 +1,10 @@  - netstandard2.1 + net8.0;net9.0 enable disable - latest + 13 false true diff --git a/src/Ephemerally.Redis/Ephemerally.Redis.csproj b/src/Ephemerally.Redis/Ephemerally.Redis.csproj index 95d4ab2..5f3df25 100644 --- a/src/Ephemerally.Redis/Ephemerally.Redis.csproj +++ b/src/Ephemerally.Redis/Ephemerally.Redis.csproj @@ -1,10 +1,10 @@ - netstandard2.1 + net8.0;net9.0 enable disable - 12 + 13 diff --git a/src/Ephemerally/Ephemerally.csproj b/src/Ephemerally/Ephemerally.csproj index 26da0a2..9fbfa36 100644 --- a/src/Ephemerally/Ephemerally.csproj +++ b/src/Ephemerally/Ephemerally.csproj @@ -1,10 +1,10 @@  - netstandard2.1 + net8.0;net9.0 enable disable - 12 + 13 diff --git a/tests/Ephemerally.Azure.Cosmos.Tests/Ephemerally.Azure.Cosmos.Tests.csproj b/tests/Ephemerally.Azure.Cosmos.Tests/Ephemerally.Azure.Cosmos.Tests.csproj index 204ad10..241e0e0 100644 --- a/tests/Ephemerally.Azure.Cosmos.Tests/Ephemerally.Azure.Cosmos.Tests.csproj +++ b/tests/Ephemerally.Azure.Cosmos.Tests/Ephemerally.Azure.Cosmos.Tests.csproj @@ -1,7 +1,7 @@ - net6.0 + net9.0 enable enable diff --git a/tests/Ephemerally.Redis.Tests/Ephemerally.Redis.Tests.csproj b/tests/Ephemerally.Redis.Tests/Ephemerally.Redis.Tests.csproj index 7511918..43a9acb 100644 --- a/tests/Ephemerally.Redis.Tests/Ephemerally.Redis.Tests.csproj +++ b/tests/Ephemerally.Redis.Tests/Ephemerally.Redis.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable disable latest diff --git a/tests/Ephemerally.Tests/Ephemerally.Tests.csproj b/tests/Ephemerally.Tests/Ephemerally.Tests.csproj index 7c0f179..50cff0a 100644 --- a/tests/Ephemerally.Tests/Ephemerally.Tests.csproj +++ b/tests/Ephemerally.Tests/Ephemerally.Tests.csproj @@ -1,7 +1,7 @@  - net8.0 + net9.0 enable disable latest