From 6217a65e45d79f997105d9296dc7178ec84b93d3 Mon Sep 17 00:00:00 2001 From: Kyle Hickman Date: Thu, 13 Nov 2025 13:33:58 -0600 Subject: [PATCH] feat: update to .NET 10, drop .NET 7 support --- .github/workflows/ci.yml | 4 ++-- .../DictionaryEntry.Benchmarks.csproj | 2 +- src/DictionaryEntry.Tests/DictionaryEntry.Tests.csproj | 2 +- src/DictionaryEntry/DictionaryEntry.csproj | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6b297a..288f52c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - dotnet-version: ['7.0.x', '8.0.x', '9.0.x'] + dotnet-version: ['8.0.x', '9.0.x', '10.0.x'] steps: - uses: actions/checkout@v4 @@ -20,9 +20,9 @@ jobs: uses: actions/setup-dotnet@v4 with: dotnet-version: | - 7.0.x 8.0.x 9.0.x + 10.0.x - name: Restore dependencies run: dotnet restore diff --git a/src/DictionaryEntry.Benchmarks/DictionaryEntry.Benchmarks.csproj b/src/DictionaryEntry.Benchmarks/DictionaryEntry.Benchmarks.csproj index caef5a2..4872168 100644 --- a/src/DictionaryEntry.Benchmarks/DictionaryEntry.Benchmarks.csproj +++ b/src/DictionaryEntry.Benchmarks/DictionaryEntry.Benchmarks.csproj @@ -2,7 +2,7 @@ Exe - net9.0 + net10.0 enable enable diff --git a/src/DictionaryEntry.Tests/DictionaryEntry.Tests.csproj b/src/DictionaryEntry.Tests/DictionaryEntry.Tests.csproj index e1e1041..568112f 100644 --- a/src/DictionaryEntry.Tests/DictionaryEntry.Tests.csproj +++ b/src/DictionaryEntry.Tests/DictionaryEntry.Tests.csproj @@ -5,7 +5,7 @@ enable Exe DictionaryEntry.Tests - net7.0;net8.0;net9.0 + net8.0;net9.0;net10.0 true true diff --git a/src/DictionaryEntry/DictionaryEntry.csproj b/src/DictionaryEntry/DictionaryEntry.csproj index 85a4aa2..a5f4ff2 100644 --- a/src/DictionaryEntry/DictionaryEntry.csproj +++ b/src/DictionaryEntry/DictionaryEntry.csproj @@ -1,7 +1,7 @@ - net7.0;net8.0;net9.0 + net8.0;net9.0;net10.0 enable enable true