build: update package dependencies#4417
Merged
Merged
Conversation
- Upgrade dependencies for each supported target framework. - Fix diagnostics introduced by the updated analyzers without suppressions. - Remove the .NET 11 MAUI compatibility dependency that is no longer shipped.
glennawatson
marked this pull request as ready for review
July 25, 2026 13:20
- Apply the required layout to Apple-only source files. - Make disposable ownership explicit without disposing borrowed instances. - Reuse the macOS persistence callback for identical lifecycle behavior.
ChrisPulman
approved these changes
Jul 25, 2026
- Force LF checkouts for every tracked text file on all platforms. - Remove the remaining solution and Windows script CRLF overrides.
|
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #4417 +/- ##
==========================================
- Coverage 93.18% 93.15% -0.04%
==========================================
Files 345 345
Lines 15006 14965 -41
Branches 1568 1568
==========================================
- Hits 13984 13941 -43
- Misses 750 752 +2
Partials 272 272 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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.


What kind of change does this PR introduce?
Build and dependency maintenance, together with the code changes required by the updated analyzers.
What is the new behavior?
NuGet dependencies use the latest compatible versions for each supported target framework. The conditions are derived from the repository's complete MSBuild target matrix, including .NET Framework, plain .NET, Windows, Android, and the Apple targets.
.NET 10 continues to reference
Microsoft.Maui.Controls.Compatibility10.0.90. .NET 11 uses MAUI preview 6 without that reference because the compatibility package is no longer built or shipped for .NET 11.Diagnostics introduced by the analyzer updates are fixed in code without adding suppressions. Tests that became exact duplicates under the new analyzer are either corrected to exercise their intended case or removed when they exercised the same call path.
What is the current behavior?
Dependencies use older stable and preview versions. MAUI compatibility is referenced without accounting for its removal from .NET 11, and the newer analyzer diagnostics are not addressed.
What might this PR break?
None expected. Existing target frameworks remain supported, and package references are conditioned per target framework.
Checklist
mainbranchAdditional information