Add support for .NET 10#340
Merged
Merged
Conversation
jeffkl
approved these changes
Sep 11, 2025
jeffkl
left a comment
Owner
There was a problem hiding this comment.
Thank you for the contribution!
There was a problem hiding this comment.
Pull Request Overview
This PR adds support for .NET 10 to the Microsoft.Build.Utilities.ProjectCreation library. It updates target frameworks, removes System.Text.Json dependency for .NET 10 support, and includes package metadata improvements.
- Added .NET 10.0 as a target framework across all projects
- Updated CI/CD workflows to test against .NET 10 preview versions
- Cleaned up package dependencies and added PackageReadme metadata
Reviewed Changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| Microsoft.Build.Utilities.ProjectCreation.csproj | Added net10.0 target framework and removed System.Text.Json reference |
| Microsoft.Build.Utilities.ProjectCreation.UnitTests.csproj | Added net10.0 target framework with System.CodeDom version override |
| TestBase.cs | Added .NET 10.0 support with appropriate SDK version mapping |
| PublicAPI files | Created public API tracking files for net10.0 framework |
| global.json | Updated SDK version to .NET 10 preview |
| Directory.Packages.props | Removed System.Text.Json package version references |
| CI/CD workflows | Updated to install and test against .NET 10 preview versions |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
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.
Add support for .NET 10. Also did a bit of cleanup to add a PackageReadme as well.