Multi-Target .NET 10#1354
Merged
pascalberger merged 6 commits intocake-contrib:developfrom Nov 23, 2025
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds multi-targeting support for .NET 10 alongside the existing .NET 8 and .NET 9 targets. The changes span across build configuration files, package lock files, project files, and NuGet package specifications.
Key Changes
- Updates SDK version from .NET 9 (9.0.308) to .NET 10 (10.0.100) in
global.json - Adds
net10.0to the target frameworks inDirectory.Build.props - Removes deprecated/unnecessary package dependencies (
Microsoft.CSharp,System.Text.Encodings.Web) - Updates all
packages.lock.jsonfiles to include net10.0 dependencies - Adds net10.0 dependency groups to all NuGet package
.nuspecfiles
Reviewed changes
Copilot reviewed 85 out of 87 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/global.json | Updates SDK version to 10.0.100 for .NET 10 support |
| src/Directory.Build.props | Adds net10.0 to multi-targeting configuration |
| src/Directory.Packages.props | Removes deprecated package references |
| src/*/packages.lock.json | Adds net10.0 dependency resolutions for all projects |
| src/Cake.Issues.Reporting.Generic/*.csproj | Removes unnecessary package references |
| nuspec/nuget/*.nuspec | Adds net10.0 target framework groups to all packages |
20cb39f to
1014907
Compare
5379b44 to
3199579
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Multi-Targets .NET 8, .NET 9 and .NET 10