Add .Net10 RC1#4728
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds .NET 10 RC1 support to the CSLA .NET framework by updating target frameworks and package references across the entire solution.
- Upgrades from .NET 8/9 to .NET 10 RC1 across all projects
- Updates Microsoft package references to version 10.0.0-rc.1.25451.107
- Configures global.json to use .NET 10 RC1 SDK and allows prereleases
Reviewed Changes
Copilot reviewed 24 out of 24 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| global.json | Updates SDK version to 10.0.100-rc.1 and enables prerelease packages |
| Source/Csla/Csla.csproj | Adds net10.0 target framework and corresponding package references |
| Multiple test projects | Updates target frameworks from net8.0 to net10.0 |
| Blazor/MAUI projects | Adds net10.0 target frameworks with appropriate package versions |
| GitHub Actions workflows | Updates .NET version from 9.0 to 10.0 in CI/CD pipelines |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
rockfordlhotka
approved these changes
Oct 6, 2025
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.
I've added .Net 10 to every project and updated the global.json to use the .Net 10 rc1 sdk version.
With this PR merged VS2026 will be required to build the solution (or any other IDE that supports .Net 10)
#4347