[release/11.0.1xx-preview6] Update dependencies from dotnet/dotnet - #11765
Merged
jonathanpeppers merged 6 commits intoJun 30, 2026
Conversation
…625.25 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed From Version 11.0.0-beta.26322.111 -> To Version 11.0.0-beta.26325.125 Microsoft.DotNet.Cecil From Version 0.11.5-preview.26322.111 -> To Version 0.11.5-preview.26325.125 Microsoft.NET.ILLink , Microsoft.NETCore.App.Ref From Version 11.0.0-preview.6.26322.111 -> To Version 11.0.0-preview.6.26325.125 Microsoft.NET.Sdk , Microsoft.TemplateEngine.Authoring.Tasks From Version 11.0.100-preview.6.26322.111 -> To Version 11.0.100-preview.6.26325.125
dotnet-maestro
Bot
requested review from
jonathanpeppers and
simonrozsival
as code owners
June 27, 2026 02:01
…626.22 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed From Version 11.0.0-beta.26322.111 -> To Version 11.0.0-beta.26326.122 Microsoft.DotNet.Cecil From Version 0.11.5-preview.26322.111 -> To Version 0.11.5-preview.26326.122 Microsoft.NET.ILLink , Microsoft.NETCore.App.Ref From Version 11.0.0-preview.6.26322.111 -> To Version 11.0.0-preview.6.26326.122 Microsoft.NET.Sdk , Microsoft.TemplateEngine.Authoring.Tasks From Version 11.0.100-preview.6.26322.111 -> To Version 11.0.100-preview.6.26326.122
…628.6 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed From Version 11.0.0-beta.26322.111 -> To Version 11.0.0-beta.26328.106 Microsoft.DotNet.Cecil From Version 0.11.5-preview.26322.111 -> To Version 0.11.5-preview.26328.106 Microsoft.NET.ILLink , Microsoft.NETCore.App.Ref From Version 11.0.0-preview.6.26322.111 -> To Version 11.0.0-preview.6.26328.106 Microsoft.NET.Sdk , Microsoft.TemplateEngine.Authoring.Tasks From Version 11.0.100-preview.6.26322.111 -> To Version 11.0.100-preview.6.26328.106
The `BuildInDesignTimeMode` test still used `[Values] AndroidRuntime runtime`, which enumerates all enum members including `MonoVM`. On .NET 11+, the Mono runtime is not supported and `_CheckForUnsupportedMonoMobileRuntime` raises NETSDK1242 during restore, so `BuildInDesignTimeMode(False,MonoVM)` and `BuildInDesignTimeMode(True,MonoVM)` fail. Restrict the parameter to `CoreCLR` and `NativeAOT` to match the rest of the test suite per 440bc33. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…proj
The MAUI Integration lane creates a project from `dotnet new maui` and
rewrites its `<TargetFrameworks>` to `net*-android` before building.
The current MAUI template declares three `<TargetFrameworks>` nodes:
<TargetFrameworks>net11.0-android</TargetFrameworks>
<TargetFrameworks Condition="!IsOSPlatform('linux')">...ios;...maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="IsOSPlatform('windows')">...windows10.0.19041.0</TargetFrameworks>
`SelectSingleNode` only matched the first node, so the iOS / maccatalyst /
Windows TFMs were still appended to $(TargetFrameworks). NuGet restore
evaluates *every* TFM in the project even when `dotnet build -f` restricts
the build, so on .NET 11+ the iOS leg fails with:
error NETSDK1242: Building iOS projects with the Mono runtime is not
supported in .NET 11.0 and later.
Switch to `SelectNodes` and drop the extras, then pin the remaining node
to Android only. Validate the rewrite succeeded instead of silently
no-oping when no node is found.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Extract the duplicated PowerShell into build-tools/automation/yaml-templates/set-maui-target-framework-android.yaml and consume it from both the internal and public pipelines. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
jonathanpeppers
approved these changes
Jun 30, 2026
simonrozsival
approved these changes
Jun 30, 2026
jonathanpeppers
deleted the
darc-release/11.0.1xx-preview6-6a6a0ba8-45f4-4153-89f7-48f18b2812d6
branch
June 30, 2026 12:43
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.
This pull request updates the following dependencies
From https://github.com/dotnet/dotnet