Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request updates the project to support .NET 10.0 and modernizes CI workflows and package references to ensure compatibility across .NET 6.0–10.0. It also improves the test project to run against all supported frameworks and updates package versions for better reliability.
.NET Version Support and Package Reference Updates:
FasterKv.Cache.Core.csprojand updated conditional package references forMicrosoft.Extensions.DependencyInjection.Abstractionsto match each target framework version.FasterKv.Cache.SystemTextJson.csprojto use conditional references forSystem.Text.Jsonbased on target framework, including .NET 6.0–10.0 and netstandard2.0.FasterKv.Cache.Core.Tests.csprojto target net6.0–net10.0 and added a reference toNewtonsoft.Json. [1] [2]FasterKvCache.Benchmark.csprojto use the latest patch version ofMicrosoft.Extensions.DependencyInjection.Abstractions.CI Workflow Modernization and Multi-Framework Testing:
build.yml,buildandtest.yml,release_stable.yml,release_unstable.yml) to use the latest actions versions, support .NET 6.0–10.0, and simplify build/test paths. [1] [2] [3] [4] [5] [6] [7] [8]buildandtest.ymlto run tests for each supported .NET framework using a matrix strategy. [1] [2]