Merged
Conversation
Updates the target framework of several projects to .NET 10. This ensures compatibility and takes advantage of the latest .NET features. Updates package versions to align with the target framework update.
Updates the Microsoft.Maui.Controls package version to 10.0.10 for .NET 10 targets in Maui projects. This ensures that the projects use the correct Maui version when targeting .NET 10. It also temporarily removes conditional package versioning from Directory.Packages.props which is now handled within the project files themselves.
Updates the Uno check version to 1.33.1 in both the build and CI workflows. Adds tvos as a target platform for workload installation in both workflows to support tvOS builds.
Also updates target frameworks to include net10.
Specifies the OutputType property as Library in the project files. This ensures that the projects are built as libraries, which is necessary for proper packaging and referencing in other projects.
Adds attached properties for tabbed page navigation and appearance. Introduces the ability to specify navigation types when going back. Adds logging for navigation failures and provides a way to add services required by markup extensions to prevent runtime errors.
Turns off code signing for .NET 10 builds, likely for testing or development purposes where signed builds are not immediately required.
Registers an instance of ILoggerFactory in the test container for the Navigation Tests. This enables logging functionality within the tests, enhancing debugging and diagnostics.
brianlagunas
approved these changes
Nov 13, 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.
Description of Change
Updates the project to target .NET 10. This includes changes to the target frameworks in various project files and updates to package versions in
Directory.Packages.props. Specifically, updates .NET MAUI to 9.0 and 10.0 depending on target framework. Uno Platform is also updated. Additionally, the .NET SDK version used in GitHub Actions workflows is updated.Bugs Fixed
API Changes
List all API changes here (or just put None), example:
None
Behavioral Changes
This change updates the target .NET version for the project. Users should ensure their environment supports .NET 10 to avoid compatibility issues.
PR Checklist