From 9596f5941ee1d4d7385b1b26cd1f106e10b621ff Mon Sep 17 00:00:00 2001 From: Tyler Kron Date: Sat, 25 Apr 2026 14:04:10 -0600 Subject: [PATCH] chore: upgrade target frameworks from net8/net9 to net9/net10 Drops .NET 8 support and adds .NET 10 to always support the latest two stable LTS/STS releases. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- src/Daqifi.Core.Tests/Daqifi.Core.Tests.csproj | 2 +- src/Daqifi.Core/Daqifi.Core.csproj | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1426d9..2a9f503 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,8 +15,8 @@ jobs: uses: actions/setup-dotnet@v5 with: dotnet-version: | - 8.0.x 9.0.x + 10.0.x - name: Restore dependencies run: dotnet restore Daqifi.Core.sln diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 716bfb8..ce501ac 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,8 +19,8 @@ jobs: uses: actions/setup-dotnet@v5 with: dotnet-version: | - 8.0.x 9.0.x + 10.0.x - name: Set version run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV diff --git a/src/Daqifi.Core.Tests/Daqifi.Core.Tests.csproj b/src/Daqifi.Core.Tests/Daqifi.Core.Tests.csproj index c9508bd..0a900e6 100644 --- a/src/Daqifi.Core.Tests/Daqifi.Core.Tests.csproj +++ b/src/Daqifi.Core.Tests/Daqifi.Core.Tests.csproj @@ -1,7 +1,7 @@ - net8.0;net9.0 + net9.0;net10.0 enable enable false diff --git a/src/Daqifi.Core/Daqifi.Core.csproj b/src/Daqifi.Core/Daqifi.Core.csproj index ef38bf3..aa2e370 100644 --- a/src/Daqifi.Core/Daqifi.Core.csproj +++ b/src/Daqifi.Core/Daqifi.Core.csproj @@ -1,7 +1,7 @@ - net8.0;net9.0 + net9.0;net10.0 enable enable