Upgrade Windows App SDK to 2.3.1 - #49597
Open
crutkas wants to merge 1 commit into
Open
Conversation
Update the central Windows App SDK dependency set and the Command Palette extension template to the latest stable release. Co-authored-by: Copilot App <[email protected]> Copilot-Session: a4a1e3da-76e4-4858-bd65-6519dd7d5900
11 tasks
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.
Summary of the Pull Request
Windows App SDK 2.3 is the latest stable release and includes new optional WinUI/XAML performance paths. This PR upgrades PowerToys' centrally managed Windows App SDK dependency set and the standalone Command Palette extension template from 2.2 to 2.3.1.
The package bump alone did not produce a statistically measurable Settings startup improvement. Holding Settings open for five seconds after first visibility showed a non-conclusive 2.28% CPU reduction and no working-set change, with a small 0.30 MB private-memory increase. The optional XAML changes also did not improve Settings startup or CPU conclusively, but reduced its settled working set by about 1.8 MB; those behavior changes are intentionally not enabled in this dependency-only PR.
PR Checklist
Detailed Description of the Pull Request / Additional comments
Updates the dependency set required by Windows App SDK 2.3.1:
Microsoft.WindowsAppSDK: 2.2.0 -> 2.3.1Microsoft.WindowsAppSDK.Foundation: 2.1.0 -> 2.3.5Microsoft.WindowsAppSDK.AI: 2.2.3 -> 2.3.4Microsoft.WindowsAppSDK.Runtime: 2.2.0 -> 2.3.1Microsoft.WindowsAppSDK: 2.2.0 -> 2.3.1The resolved graph uses WinUI 2.3.0. The four separately tested XAML opt-ins (
DefaultStyleOptimizations,DeferContextFlyoutInit,IconNoGridOptimization, andOptimizeApplyStyles) are not enabled here. Their app-dependent results suggest that enabling them should be evaluated separately with scenario-specific profiling rather than bundled into the dependency upgrade.Validation Steps Performed
OnLaunchedFromRunnerinstead of redirecting or exiting. Readiness required a nonzero visible main window, followed by the five-second residency period before settled CPU and memory sampling.The optional XAML changes were enabled only in temporary benchmark builds and are not part of this PR.