chore: adjust for net10#1845
Merged
Merged
Conversation
kazo0
commented
Nov 11, 2025
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR updates the default .NET target framework from 9.0 to 10.0 across all Uno templates and supporting infrastructure, reflecting .NET 10.0's transition from preview to stable release.
- Changed default target framework to
net10.0in all template configurations - Removed "Preview" labels from .NET 10.0 descriptions throughout templates
- Updated package versions from release candidate to stable versions (e.g.,
10.0.0-rc.2.25502.107→10.0.0) - Updated CI infrastructure to use .NET 10.0 stable SDK version
10.0.100and adjusted UnoCheck configuration
Reviewed Changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/Uno.Templates/content/unomauilib/.template.config/template.json | Updated default framework to net10.0 and removed Preview label |
| src/Uno.Templates/content/unolib/.template.config/template.json | Updated default framework to net10.0 and removed Preview label |
| src/Uno.Templates/content/unolib-uitest/.template.config/template.json | Updated default framework to net10.0 and removed Preview label |
| src/Uno.Templates/content/unoapp/.template.config/template.json | Updated default framework to net10.0, removed Preview label, and set AllowPrereleaseNetSdk to false for stable SDK |
| src/Uno.Sdk/packages.json | Updated package version overrides from RC versions to stable 10.0.0/10.0.1 releases |
| src/Uno.Sdk/ReadMe.md | Mirrored package version updates from packages.json for documentation consistency |
| src/Uno.Sdk.Updater.targets | Updated UnoWasmBootstrapVersionNet10 to stable version 10.0.1 |
| .github/workflows/ci.yml | Updated ValidationUnoCheckVersionNet10 to latest dev version |
| .github/actions/ci/run-tests/action.yml | Updated .NET 10 SDK version to stable 10.0.100 release |
| .github/actions/ci/generate-test-matrix/action.yml | Removed --pre-major flag from unocheck arguments for net10 test groups |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
agneszitte
approved these changes
Nov 11, 2025
Member
|
@Mergifyio backport release/stable/6.4 |
✅ Backports have been createdDetails
|
This was referenced Feb 7, 2026
This was referenced Feb 16, 2026
This was referenced May 4, 2026
This was referenced May 11, 2026
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.
This pull request updates the default .NET target version for Uno templates and related CI infrastructure from .NET 9.0 to .NET 10.0. It also removes preview labels from .NET 10.0 descriptions and makes minor adjustments to CI scripts and bootstrapper versions to align with .NET 10.0 support.
Template updates:
Changed the default target framework to
net10.0in all Uno templates (unoapp,unolib,unolib-uitest,unomauilib) and updated descriptions to remove the "Preview" label for .NET 10.0. (F1fe99c3L22R22, [1] [2] [3] [4] [5] [6] [7]Updated a template condition for
net10.0inunoappso that the value is now set tofalseinstead oftrue.CI and build infrastructure:
Updated the .NET 10 version used in CI scripts to
10.0.100(removing the release candidate suffix) and set theunocheckArgumentsto an empty string for .NET 10 test groups. [1] [2]Added a TODO comment to the
UnoWasmBootstrapVersionNet10property and similar TODOs to environment variables for UnoCheck versions, indicating these should be updated when stable versions are released. [1] [2]