Update PR dogfood install scripts to default to .NET 10#34709
Closed
Update PR dogfood install scripts to default to .NET 10#34709
Conversation
Agent-Logs-Url: https://github.com/dotnet/maui/sessions/a65b3d82-820a-4384-a474-a112a9427775 Co-authored-by: mattleibow <1096616+mattleibow@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
mattleibow
March 28, 2026 01:16
View session
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
Updates the PR dogfood install scripts to default to .NET 10 as the current stable version, matching the change in the
mattleibow:patch-1branch.Both
get-maui-pr.ps1andget-maui-pr.shhave aGet-PackageDotNetVersion/get_package_dotnet_versionfunction that extracts the .NET major version from a package version string (e.g.,10.0.20-ci.main...→10). When the version cannot be determined from the package string, the function fell back to hardcoded version9(.NET 9). This PR updates that fallback to10(.NET 10) to reflect that .NET 10 is now the current stable version.Changes
eng/scripts/get-maui-pr.ps1:return 9→return 10inGet-PackageDotNetVersioneng/scripts/get-maui-pr.sh:echo "9"→echo "10"inget_package_dotnet_version