Merge main into live#3375
Conversation
* Add MSDocs build verifier workflow * Fix invalid installation tab links Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Gerald Versluis <gerald.versluis@microsoft.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
#3368) * Document CancellationToken support for view animations in .NET MAUI 11 Adds a new "Cancel an animation with a CancellationToken" subsection under "Canceling animations" that explains the new Async-suffixed animation methods (FadeToAsync, RotateToAsync, ScaleToAsync, TranslateToAsync, and the relative variants) accept an optional CancellationToken in .NET MAUI 11. Includes a runnable snippet and a note that the non-Async overloads are now [Obsolete]. Tracks dotnet/maui#33372 and aligns with the .NET 11 Preview 5 release notes published in dotnet/core#10433. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Correct cancellation pattern to Task<bool> return value FadeToAsync and the other cancellation-aware overloads return Task<bool> (true on cancel, false on completion) — they do not throw TaskCanceledException. Verified against ViewExtensions.AnimateToAsync on release/11.0.1xx-preview5. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Andy (Steve) De George <67293991+adegeo@users.noreply.github.com> Co-authored-by: Gerald Versluis <gerald@verslu.is> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
* Document public Material 3 helper types in .NET MAUI 11 Adds a "Customize Material 3 controls" section that enumerates the Microsoft.Maui.Platform Material 3 helper types now exposed as public in .NET MAUI 11 (MauiMaterialEditText, MauiMaterialPicker, MauiMaterialDatePicker, MauiMaterialTimePicker, MauiMaterialTextView, MauiMaterialSearchBarTextInputLayout, MaterialActivityIndicator, MauiMaterialContextThemeWrapper). Includes a handler-customization example that subclasses MauiMaterialEditText for Entry. Tracks dotnet/maui#35323 and aligns with the .NET 11 Preview 5 release notes published in dotnet/core#10433. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix Material 3 validation xrefs Replace unresolved xrefs for newly public .NET 11 Material 3 helper and Handler2 types with code spans so OPS validation doesn't warn before the API reference includes them. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Andy (Steve) De George <67293991+adegeo@users.noreply.github.com> Co-authored-by: Gerald Versluis <gerald.versluis@microsoft.com>
* Document back button accessibility label in .NET MAUI 11 Adds documentation for the new accessibility-label APIs that flow SemanticProperties to the toolbar back button: - NavigationPage.BackButtonAccessibilityLabel attached property (new "Set the back button accessibility label" subsection in navigationpage.md, plus a NOTE in the property table). - BackButtonBehavior.AccessibilityLabel property (Shell, new moniker-gated block in shell/navigation.md's "Back button behavior" section). Both additions cross-link to docs/fundamentals/accessibility.md. Tracks dotnet/maui#35011 and aligns with the .NET 11 Preview 5 release notes published in dotnet/core#10433. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Apply back button accessibility review suggestions Use consistent DocFX moniker spacing and align the explanatory text with the XAML samples. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Andy (Steve) De George <67293991+adegeo@users.noreply.github.com> Co-authored-by: Gerald Versluis <gerald.versluis@microsoft.com>
PoliCheck Scan ReportThe following report lists PoliCheck issues in PR files. Before you merge the PR, you must fix all severity-1 and severity-2 issues. The AI Review Details column lists suggestions for either removing or replacing the terms. If you find a false positive result, mention it in a PR comment and include this text: #policheck-false-positive. This feedback helps reduce false positives in future scans. ✅ No issues foundMore information about PoliCheckInformation: PoliCheck | Severity Guidance | Term |
|
Learn Build status updates of commit 13ec517: ✅ Validation status: passed
For more details, please refer to the build report. |
PoliCheck Scan ReportThe following report lists PoliCheck issues in PR files. Before you merge the PR, you must fix all severity-1 and severity-2 issues. The AI Review Details column lists suggestions for either removing or replacing the terms. If you find a false positive result, mention it in a PR comment and include this text: #policheck-false-positive. This feedback helps reduce false positives in future scans. ✅ No issues foundMore information about PoliCheckInformation: PoliCheck | Severity Guidance | Term |
|
Learn Build status updates of commit 1afa221: ✅ Validation status: passed
For more details, please refer to the build report. |
* Document .NET MAUI 11 Preview 5 features in whats-new Adds the Preview 5 release-notes link to the top of the page and documents the Preview 5 features that ship across the workload: - Map for Windows (Azure Maps-backed) — new section under Map. - BoxView Fill (Brush support) — new section under Controls. - Animation cancellation with CancellationToken — new top-level Animation section, cross-linked to basic.md. - Back button accessibility label (NavigationPage attached property and BackButtonBehavior.AccessibilityLabel) — new Accessibility section, cross-linked to navigationpage.md and shell/navigation.md. - Material 3 helper types now public — extends the existing Material 3 on Android section, cross-linked to material-design.md. - Apple Intelligence APIs (Foundation Models, Image Playground, Writing Tools, Translation) — new section under .NET for iOS. Tracks dotnet/maui#31789, #33372, #34138, #35011, #35323, and dotnet/macios#25457, and aligns with the .NET 11 Preview 5 release notes published in dotnet/core#10433. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Revise .NET 11 release notes with new features Updated .NET 11 release notes to reflect new features and changes, including CoreCLR as the default runtime, new APIs for visual state management, and enhancements in XAML support. Removed the net11 moniker filters that were hiding content when a different filter was chosen. * Apply .NET 11 whats-new review suggestions Fix unresolved links and xrefs, clarify Map for Windows token setup, and correct XAML heading levels. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Andy (Steve) De George <67293991+adegeo@users.noreply.github.com> Co-authored-by: Gerald Versluis <gerald.versluis@microsoft.com>
PoliCheck Scan ReportThe following report lists PoliCheck issues in PR files. Before you merge the PR, you must fix all severity-1 and severity-2 issues. The AI Review Details column lists suggestions for either removing or replacing the terms. If you find a false positive result, mention it in a PR comment and include this text: #policheck-false-positive. This feedback helps reduce false positives in future scans. ✅ No issues foundMore information about PoliCheckInformation: PoliCheck | Severity Guidance | Term |
|
Learn Build status updates of commit e75f60a: ✅ Validation status: passed
For more details, please refer to the build report. |
Please don't squash-merge this PR.
Internal previews