From db822b415efb3a4969ab79c8e342dd7724a3c3b8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 10 Feb 2026 17:16:53 +0000 Subject: [PATCH 1/8] Backflow from https://github.com/dotnet/dotnet / bcde514 build 301136 [[ commit created by automation ]] --- eng/Versions.props | 2 +- eng/testing/linker/trimmingTests.targets | 2 +- .../tests/TestUtilities/System/PlatformDetection.cs | 3 ++- src/mono/browser/build/WasmApp.InTree.props | 2 +- .../Microsoft.NET.Sdk.WebAssembly.Browser.targets | 12 +++++------- .../Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.csproj | 11 ++++------- 6 files changed, 14 insertions(+), 18 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index bfa35f15609e3b..fef3eb3975714e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -15,7 +15,7 @@ 7.0.20 6.0.36 preview - 1 + 2 false release diff --git a/eng/testing/linker/trimmingTests.targets b/eng/testing/linker/trimmingTests.targets index 0418d28da14dbd..b9d6a174337ac1 100644 --- a/eng/testing/linker/trimmingTests.targets +++ b/eng/testing/linker/trimmingTests.targets @@ -115,7 +115,7 @@ .Replace('{WasmAppBuilderTasksAssemblyPath}', '$(WasmAppBuilderTasksAssemblyPath)') .Replace('{MicrosoftNetCoreAppRuntimePackRidDir}', '$(MicrosoftNetCoreAppRuntimePackRidDir)') .Replace('{WasmSdkPackBuildPath}', '$(MonoProjectRoot)nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/') - .Replace('{WasmSdkPackTasksPath}', '$(ArtifactsBinDir)Microsoft.NET.Sdk.WebAssembly.Pack.Tasks/$(RuntimeConfiguration)/') + .Replace('{WasmSdkPackTasksPath}', '$(ArtifactsBinDir)Microsoft.NET.Sdk.WebAssembly.Pack.Tasks/$(RuntimeConfiguration)/$(NetCoreAppToolCurrent)/') .Replace('{ProductVersion}', '$(ProductVersion)') .Replace('{NetCoreAppCurrent}', '$(NetCoreAppCurrent)') .Replace('{NetCoreAppToolCurrent}', '$(NetCoreAppToolCurrent)') diff --git a/src/libraries/Common/tests/TestUtilities/System/PlatformDetection.cs b/src/libraries/Common/tests/TestUtilities/System/PlatformDetection.cs index 8c8968d54bf7de..5fe0df416d1952 100644 --- a/src/libraries/Common/tests/TestUtilities/System/PlatformDetection.cs +++ b/src/libraries/Common/tests/TestUtilities/System/PlatformDetection.cs @@ -232,7 +232,8 @@ private static bool GetLinqExpressionsBuiltWithIsInterpretingOnly() // heavily on Reflection.Emit public static bool IsXmlDsigXsltTransformSupported => !PlatformDetection.IsInAppContainer && IsReflectionEmitSupported; - public static bool IsPreciseGcSupported => !IsMonoRuntime; + public static bool IsPreciseGcSupported => !IsMonoRuntime + && !IsBrowser; // TODO-WASM: https://github.com/dotnet/runtime/issues/114096 public static bool IsRareEnumsSupported => !IsNativeAot; diff --git a/src/mono/browser/build/WasmApp.InTree.props b/src/mono/browser/build/WasmApp.InTree.props index b83e9994dc24f8..721d82edcba782 100644 --- a/src/mono/browser/build/WasmApp.InTree.props +++ b/src/mono/browser/build/WasmApp.InTree.props @@ -8,7 +8,7 @@ <_WebAssemblyPropsFile Condition="'$(_WebAssemblyPropsFile)' == ''">$(MonoProjectRoot)\nuget\Microsoft.NET.Sdk.WebAssembly.Pack\build\Microsoft.NET.Sdk.WebAssembly.Browser.props <_WebAssemblyTargetsFile Condition="'$(_WebAssemblyTargetsFile)' == ''">$(MonoProjectRoot)\nuget\Microsoft.NET.Sdk.WebAssembly.Pack\build\Microsoft.NET.Sdk.WebAssembly.Browser.targets - <_WebAssemblySdkToolsDirectory Condition="'$(_WebAssemblySdkToolsDirectory)' == ''">$(ArtifactsBinDir)\Microsoft.NET.Sdk.WebAssembly.Pack.Tasks\$(RuntimeConfiguration)\ + <_WebAssemblySdkToolsDirectory Condition="'$(_WebAssemblySdkToolsDirectory)' == ''">$(ArtifactsBinDir)\Microsoft.NET.Sdk.WebAssembly.Pack.Tasks\$(RuntimeConfiguration)\$(NetCoreAppToolCurrent)\ diff --git a/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets b/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets index 707ce66956448e..148ea1df48d85b 100644 --- a/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets +++ b/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets @@ -56,19 +56,17 @@ Copyright (c) .NET Foundation. All rights reserved. <_WebAssemblySdkToolsDirectory Condition="'$(_WebAssemblySdkToolsDirectory)'==''">$(MSBuildThisFileDirectory)..\tools\ - <_WebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' == 'Core'">net11.0 - <_WebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' != 'Core'">net472 - <_WebAssemblySdkTasksAssembly Condition="'$(_WebAssemblySdkTasksAssembly)' == ''">$(_WebAssemblySdkToolsDirectory)\$(_WebAssemblySdkTasksTFM)\Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.dll + <_WebAssemblySdkTasksAssembly Condition="'$(_WebAssemblySdkTasksAssembly)' == ''">$(_WebAssemblySdkToolsDirectory)Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.dll $(CompressionIncludePatterns);_framework\** true - - - - + + + + true diff --git a/src/tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.csproj b/src/tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.csproj index 638220540d58f9..485f155f1157a6 100644 --- a/src/tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.csproj +++ b/src/tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.csproj @@ -1,8 +1,8 @@ - $(NetCoreAppToolCurrent);$(NetFrameworkToolCurrent) - $(NoWarn),CA1050,CA1850,CA1845,CA1859,CA1866,CS8632,NU5128 + $(NetCoreAppToolCurrent) + $(NoWarn),CA1050,CA1850,CA1845,CA1859,CS8632,NU5128 Microsoft.NET.Sdk.WebAssembly true true @@ -19,11 +19,8 @@ - <_PublishFramework Remove="@(_PublishFramework)" /> - <_PublishFramework Include="$(TargetFrameworks)" /> - - - + + From 071974d30ba358b0aa963e4c577dc1c26d3700ad Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 10 Feb 2026 17:17:01 +0000 Subject: [PATCH 2/8] Update dependencies from build 301136 On relative base path root Microsoft.CodeAnalysis,Microsoft.CodeAnalysis.Analyzers,Microsoft.CodeAnalysis.CSharp,Microsoft.Net.Compilers.Toolset From Version 5.4.0-2.26069.103 -> To Version 5.5.0-2.26110.101 (parent: ) Microsoft.CodeAnalysis.NetAnalyzers,Microsoft.DotNet.ApiCompat.Task,Microsoft.NET.Workload.Emscripten.Current.Manifest-11.0.100.Transport From Version 11.0.100-preview.1.26069.103 -> To Version 11.0.100-preview.2.26110.101 (parent: ) Microsoft.DotNet.Arcade.Sdk,Microsoft.DotNet.Build.Tasks.Archives,Microsoft.DotNet.Build.Tasks.Feed,Microsoft.DotNet.Build.Tasks.Installers,Microsoft.DotNet.Build.Tasks.Packaging,Microsoft.DotNet.Build.Tasks.TargetFramework,Microsoft.DotNet.Build.Tasks.Templating,Microsoft.DotNet.Build.Tasks.Workloads,Microsoft.DotNet.CodeAnalysis,Microsoft.DotNet.GenAPI,Microsoft.DotNet.GenFacades,Microsoft.DotNet.Helix.Sdk,Microsoft.DotNet.PackageTesting,Microsoft.DotNet.RemoteExecutor,Microsoft.DotNet.SharedFramework.Sdk,Microsoft.DotNet.XliffTasks,Microsoft.DotNet.XUnitExtensions From Version 11.0.0-beta.26069.103 -> To Version 11.0.0-beta.26110.101 (parent: ) Microsoft.DotNet.Cecil From Version 0.11.5-preview.26069.103 -> To Version 0.11.5-preview.26110.101 (parent: ) Microsoft.DotNet.XUnitAssert,Microsoft.DotNet.XUnitConsoleRunner From Version 2.9.3-beta.26069.103 -> To Version 2.9.3-beta.26110.101 (parent: ) Microsoft.NET.Sdk.IL,Microsoft.NETCore.App.Ref,Microsoft.NETCore.ILAsm,runtime.native.System.IO.Ports,System.Reflection.Metadata,System.Reflection.MetadataLoadContext,System.Text.Json From Version 11.0.0-preview.1.26069.103 -> To Version 11.0.0-preview.2.26110.101 (parent: ) NuGet.Frameworks,NuGet.Packaging,NuGet.ProjectModel,NuGet.Versioning From Version 7.3.0-preview.1.7003 -> To Version 7.5.0-rc.11101 (parent: ) System.CommandLine From Version 3.0.0-preview.1.26069.103 -> To Version 3.0.0-preview.2.26110.101 (parent: ) runtime.linux-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.win-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.win-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.osx-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.osx-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.osx-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.osx-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.osx-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools From Version 19.1.0-alpha.1.25625.2 -> To Version 19.1.0-alpha.1.26076.1 (parent: ) runtime.linux-arm64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.linux-x64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.osx-arm64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.osx-x64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.win-arm64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.win-x64.Microsoft.NETCore.Runtime.Wasm.Node.Transport From Version 11.0.0-alpha.1.26061.1 -> To Version 11.0.0-alpha.1.26076.4 (parent: ) [[ commit created by automation ]] --- eng/Version.Details.props | 152 ++++----- eng/Version.Details.xml | 306 +++++++++--------- .../job/publish-build-assets.yml | 2 +- .../core-templates/job/source-build.yml | 8 +- .../core-templates/post-build/post-build.yml | 4 +- eng/common/cross/build-rootfs.sh | 4 +- eng/common/native/install-dependencies.sh | 9 +- .../templates/variables/pool-providers.yml | 2 +- global.json | 12 +- 9 files changed, 249 insertions(+), 250 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index d8c8bc217c0805..b4ce89c4c7bccc 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,75 +8,75 @@ This file should be imported by eng/Versions.props 11.0.0-alpha.1.26063.1 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 - 19.1.0-alpha.1.25625.2 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26076.1 - 5.4.0-2.26069.103 - 5.4.0-2.26069.103 - 5.4.0-2.26069.103 - 11.0.100-preview.1.26069.103 - 11.0.100-preview.1.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 0.11.5-preview.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 11.0.0-beta.26069.103 - 2.9.3-beta.26069.103 - 2.9.3-beta.26069.103 - 11.0.0-beta.26069.103 - 5.4.0-2.26069.103 - 11.0.0-preview.1.26069.103 - 11.0.100-preview.1.26069.103 - 11.0.0-preview.1.26069.103 - 11.0.0-preview.1.26069.103 - 7.3.0-preview.1.7003 - 7.3.0-preview.1.7003 - 7.3.0-preview.1.7003 - 7.3.0-preview.1.7003 - 11.0.0-preview.1.26069.103 - 3.0.0-preview.1.26069.103 - 11.0.0-preview.1.26069.103 - 11.0.0-preview.1.26069.103 - 11.0.0-preview.1.26069.103 + 5.5.0-2.26110.101 + 5.5.0-2.26110.101 + 5.5.0-2.26110.101 + 11.0.100-preview.2.26110.101 + 11.0.100-preview.2.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 0.11.5-preview.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 11.0.0-beta.26110.101 + 2.9.3-beta.26110.101 + 2.9.3-beta.26110.101 + 11.0.0-beta.26110.101 + 5.5.0-2.26110.101 + 11.0.0-preview.2.26110.101 + 11.0.100-preview.2.26110.101 + 11.0.0-preview.2.26110.101 + 11.0.0-preview.2.26110.101 + 7.5.0-rc.11101 + 7.5.0-rc.11101 + 7.5.0-rc.11101 + 7.5.0-rc.11101 + 11.0.0-preview.2.26110.101 + 3.0.0-preview.2.26110.101 + 11.0.0-preview.2.26110.101 + 11.0.0-preview.2.26110.101 + 11.0.0-preview.2.26110.101 11.0.0-beta.26071.1 11.0.0-beta.26071.1 @@ -108,14 +108,14 @@ This file should be imported by eng/Versions.props 11.0.0-alpha.0.25625.1 - 11.0.0-alpha.1.26061.1 - 11.0.0-alpha.1.26061.1 - 11.0.0-alpha.1.26061.1 - 11.0.0-alpha.1.26061.1 - 11.0.0-alpha.1.26061.1 - 11.0.0-alpha.1.26061.1 - 11.0.0-alpha.1.26061.1 - 11.0.0-alpha.1.26061.1 + 11.0.0-alpha.1.26076.4 + 11.0.0-alpha.1.26076.4 + 11.0.0-alpha.1.26076.4 + 11.0.0-alpha.1.26076.4 + 11.0.0-alpha.1.26076.4 + 11.0.0-alpha.1.26076.4 + 11.0.0-alpha.1.26076.4 + 11.0.0-alpha.1.26076.4 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9d2d04ca06a09f..8fa5b81b8d9fc8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,127 +1,127 @@ - + https://github.com/dotnet/icu b12b32d4177efa391c10895fc2ef3b7a21fb1d4d - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 https://github.com/dotnet/runtime-assets @@ -175,117 +175,117 @@ https://github.com/dotnet/runtime-assets 2497df9ce6db7a2b4082cb45b203983f977c6d5b - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/llvm-project - 90a3b767fd10543cbaed7308406e0059dec0ffb7 + 57f4d3d40af50f7ba102cc071dfc217b15bded51 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 https://github.com/dotnet/xharness @@ -299,9 +299,9 @@ https://github.com/dotnet/xharness 31e0b8e08f57890f7b7004b93361d69cd4b21079 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 https://dev.azure.com/dnceng/internal/_git/dotnet-optimization @@ -327,29 +327,29 @@ https://github.com/dotnet/runtime-assets 2497df9ce6db7a2b4082cb45b203983f977c6d5b - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 https://dev.azure.com/dnceng/internal/_git/dotnet-optimization @@ -361,53 +361,53 @@ - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/dotnet - adf42f5dcec99a409a6f63355f5b52147bfaf043 + bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 - + https://github.com/dotnet/node - 7a708d1adab0930c09ef65586d354aafb2ab27cf + 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 - + https://github.com/dotnet/node - 7a708d1adab0930c09ef65586d354aafb2ab27cf + 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 - + https://github.com/dotnet/node - 7a708d1adab0930c09ef65586d354aafb2ab27cf + 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 - + https://github.com/dotnet/node - 7a708d1adab0930c09ef65586d354aafb2ab27cf + 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 - + https://github.com/dotnet/node - 7a708d1adab0930c09ef65586d354aafb2ab27cf + 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 - + https://github.com/dotnet/node - 7a708d1adab0930c09ef65586d354aafb2ab27cf + 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 - + https://github.com/dotnet/node - 7a708d1adab0930c09ef65586d354aafb2ab27cf + 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 - + https://github.com/dotnet/node - 7a708d1adab0930c09ef65586d354aafb2ab27cf + 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 https://github.com/dotnet/runtime-assets diff --git a/eng/common/core-templates/job/publish-build-assets.yml b/eng/common/core-templates/job/publish-build-assets.yml index 8b5c635fe807e1..c9ee8ffd8f1d29 100644 --- a/eng/common/core-templates/job/publish-build-assets.yml +++ b/eng/common/core-templates/job/publish-build-assets.yml @@ -80,7 +80,7 @@ jobs: # If it's not devdiv, it's dnceng ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: name: NetCore1ESPool-Publishing-Internal - image: windows.vs2019.amd64 + image: windows.vs2022.amd64 os: windows steps: - ${{ if eq(parameters.is1ESPipeline, '') }}: diff --git a/eng/common/core-templates/job/source-build.yml b/eng/common/core-templates/job/source-build.yml index 9d820f9742117b..1997c2ae00d76a 100644 --- a/eng/common/core-templates/job/source-build.yml +++ b/eng/common/core-templates/job/source-build.yml @@ -60,19 +60,19 @@ jobs: pool: ${{ if eq(variables['System.TeamProject'], 'public') }}: name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore-Svc-Public' ), False, 'NetCore-Public')] - demands: ImageOverride -equals build.ubuntu.2204.amd64 + demands: ImageOverride -equals build.azurelinux.3.amd64.open ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore1ESPool-Svc-Internal'), False, 'NetCore1ESPool-Internal')] - image: 1es-azurelinux-3 + image: build.azurelinux.3.amd64 os: linux ${{ else }}: pool: ${{ if eq(variables['System.TeamProject'], 'public') }}: name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore-Svc-Public' ), False, 'NetCore-Public')] - demands: ImageOverride -equals Build.Ubuntu.2204.Amd64.Open + demands: ImageOverride -equals build.azurelinux.3.amd64.open ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore1ESPool-Svc-Internal'), False, 'NetCore1ESPool-Internal')] - demands: ImageOverride -equals Build.Ubuntu.2204.Amd64 + demands: ImageOverride -equals build.azurelinux.3.amd64 ${{ if ne(parameters.platform.pool, '') }}: pool: ${{ parameters.platform.pool }} diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index 06864cd1feb8e8..3bed9cdb49d87e 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -293,11 +293,11 @@ stages: ${{ else }}: ${{ if eq(parameters.is1ESPipeline, true) }}: name: NetCore1ESPool-Publishing-Internal - image: windows.vs2019.amd64 + image: windows.vs2022.amd64 os: windows ${{ else }}: name: NetCore1ESPool-Publishing-Internal - demands: ImageOverride -equals windows.vs2019.amd64 + demands: ImageOverride -equals windows.vs2022.amd64 steps: - template: /eng/common/core-templates/post-build/setup-maestro-vars.yml parameters: diff --git a/eng/common/cross/build-rootfs.sh b/eng/common/cross/build-rootfs.sh index 9b7eede4e50f60..ef97671fe6cbdb 100755 --- a/eng/common/cross/build-rootfs.sh +++ b/eng/common/cross/build-rootfs.sh @@ -295,9 +295,7 @@ while :; do ;; noble) # Ubuntu 24.04 __CodeName=noble - if [[ -z "$__LLDB_Package" ]]; then - __LLDB_Package="liblldb-19-dev" - fi + __LLDB_Package="liblldb-19-dev" ;; stretch) # Debian 9 __CodeName=stretch diff --git a/eng/common/native/install-dependencies.sh b/eng/common/native/install-dependencies.sh index 11f81cbd40d4a9..abb47beacfa081 100755 --- a/eng/common/native/install-dependencies.sh +++ b/eng/common/native/install-dependencies.sh @@ -24,16 +24,16 @@ case "$os" in apt update apt install -y build-essential gettext locales cmake llvm clang lld lldb liblldb-dev libunwind8-dev libicu-dev liblttng-ust-dev \ - libssl-dev libkrb5-dev pigz cpio + libssl-dev libkrb5-dev pigz cpio ninja-build localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 elif [ "$ID" = "fedora" ] || [ "$ID" = "rhel" ] || [ "$ID" = "azurelinux" ] || [ "$ID" = "centos" ]; then pkg_mgr="$(command -v tdnf 2>/dev/null || command -v dnf)" - $pkg_mgr install -y cmake llvm lld lldb clang python curl libicu-devel openssl-devel krb5-devel lttng-ust-devel pigz cpio + $pkg_mgr install -y cmake llvm lld lldb clang python curl libicu-devel openssl-devel krb5-devel lttng-ust-devel pigz cpio ninja-build elif [ "$ID" = "amzn" ]; then - dnf install -y cmake llvm lld lldb clang python libicu-devel openssl-devel krb5-devel lttng-ust-devel pigz cpio + dnf install -y cmake llvm lld lldb clang python libicu-devel openssl-devel krb5-devel lttng-ust-devel pigz cpio ninja-build elif [ "$ID" = "alpine" ]; then - apk add build-base cmake bash curl clang llvm-dev lld lldb krb5-dev lttng-ust-dev icu-dev openssl-dev pigz cpio + apk add build-base cmake bash curl clang llvm-dev lld lldb krb5-dev lttng-ust-dev icu-dev openssl-dev pigz cpio ninja else echo "Unsupported distro. distro: $ID" exit 1 @@ -54,6 +54,7 @@ brew "openssl@3" brew "pkgconf" brew "python3" brew "pigz" +brew "ninja" EOF ;; diff --git a/eng/common/templates/variables/pool-providers.yml b/eng/common/templates/variables/pool-providers.yml index e0b19c14a073c6..18693ea120d57b 100644 --- a/eng/common/templates/variables/pool-providers.yml +++ b/eng/common/templates/variables/pool-providers.yml @@ -23,7 +23,7 @@ # # pool: # name: $(DncEngInternalBuildPool) -# demands: ImageOverride -equals windows.vs2019.amd64 +# demands: ImageOverride -equals windows.vs2022.amd64 variables: - ${{ if eq(variables['System.TeamProject'], 'internal') }}: - template: /eng/common/templates-official/variables/pool-providers.yml diff --git a/global.json b/global.json index c6b5ccd859954c..37125247d4ffa8 100644 --- a/global.json +++ b/global.json @@ -1,18 +1,18 @@ { "sdk": { - "version": "11.0.100-alpha.1.26064.118", + "version": "11.0.100-preview.1.26078.121", "allowPrerelease": true, "rollForward": "major" }, "tools": { - "dotnet": "11.0.100-alpha.1.26064.118" + "dotnet": "11.0.100-preview.1.26078.121" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26069.103", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26069.103", - "Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26069.103", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26110.101", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26110.101", + "Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26110.101", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", - "Microsoft.NET.Sdk.IL": "11.0.0-preview.1.26069.103" + "Microsoft.NET.Sdk.IL": "11.0.0-preview.2.26110.101" } } From 9e868ca5555efd5694a5e6b11f92e58ac1e9415f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Tue, 10 Feb 2026 18:22:09 +0100 Subject: [PATCH 3/8] Revert change in PlatformDetection.cs It was reverted in https://github.com/dotnet/runtime/pull/123629/changes#diff-b9f66b9752f1aa02d62fa3062d8e57ba707c40653941ac33ad7c87dbcf9f5597 --- .../Common/tests/TestUtilities/System/PlatformDetection.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libraries/Common/tests/TestUtilities/System/PlatformDetection.cs b/src/libraries/Common/tests/TestUtilities/System/PlatformDetection.cs index 5fe0df416d1952..8c8968d54bf7de 100644 --- a/src/libraries/Common/tests/TestUtilities/System/PlatformDetection.cs +++ b/src/libraries/Common/tests/TestUtilities/System/PlatformDetection.cs @@ -232,8 +232,7 @@ private static bool GetLinqExpressionsBuiltWithIsInterpretingOnly() // heavily on Reflection.Emit public static bool IsXmlDsigXsltTransformSupported => !PlatformDetection.IsInAppContainer && IsReflectionEmitSupported; - public static bool IsPreciseGcSupported => !IsMonoRuntime - && !IsBrowser; // TODO-WASM: https://github.com/dotnet/runtime/issues/114096 + public static bool IsPreciseGcSupported => !IsMonoRuntime; public static bool IsRareEnumsSupported => !IsNativeAot; From 85d231eb35edc906cc0c797ee66decb5cd8410e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Tue, 10 Feb 2026 18:14:05 +0100 Subject: [PATCH 4/8] Revert changes in wasm files They got reverted in https://github.com/dotnet/runtime/pull/123973 --- eng/testing/linker/trimmingTests.targets | 2 +- src/mono/browser/build/WasmApp.InTree.props | 2 +- .../Microsoft.NET.Sdk.WebAssembly.Browser.targets | 12 +++++++----- .../Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.csproj | 11 +++++++---- 4 files changed, 16 insertions(+), 11 deletions(-) diff --git a/eng/testing/linker/trimmingTests.targets b/eng/testing/linker/trimmingTests.targets index b9d6a174337ac1..0418d28da14dbd 100644 --- a/eng/testing/linker/trimmingTests.targets +++ b/eng/testing/linker/trimmingTests.targets @@ -115,7 +115,7 @@ .Replace('{WasmAppBuilderTasksAssemblyPath}', '$(WasmAppBuilderTasksAssemblyPath)') .Replace('{MicrosoftNetCoreAppRuntimePackRidDir}', '$(MicrosoftNetCoreAppRuntimePackRidDir)') .Replace('{WasmSdkPackBuildPath}', '$(MonoProjectRoot)nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/') - .Replace('{WasmSdkPackTasksPath}', '$(ArtifactsBinDir)Microsoft.NET.Sdk.WebAssembly.Pack.Tasks/$(RuntimeConfiguration)/$(NetCoreAppToolCurrent)/') + .Replace('{WasmSdkPackTasksPath}', '$(ArtifactsBinDir)Microsoft.NET.Sdk.WebAssembly.Pack.Tasks/$(RuntimeConfiguration)/') .Replace('{ProductVersion}', '$(ProductVersion)') .Replace('{NetCoreAppCurrent}', '$(NetCoreAppCurrent)') .Replace('{NetCoreAppToolCurrent}', '$(NetCoreAppToolCurrent)') diff --git a/src/mono/browser/build/WasmApp.InTree.props b/src/mono/browser/build/WasmApp.InTree.props index 721d82edcba782..b83e9994dc24f8 100644 --- a/src/mono/browser/build/WasmApp.InTree.props +++ b/src/mono/browser/build/WasmApp.InTree.props @@ -8,7 +8,7 @@ <_WebAssemblyPropsFile Condition="'$(_WebAssemblyPropsFile)' == ''">$(MonoProjectRoot)\nuget\Microsoft.NET.Sdk.WebAssembly.Pack\build\Microsoft.NET.Sdk.WebAssembly.Browser.props <_WebAssemblyTargetsFile Condition="'$(_WebAssemblyTargetsFile)' == ''">$(MonoProjectRoot)\nuget\Microsoft.NET.Sdk.WebAssembly.Pack\build\Microsoft.NET.Sdk.WebAssembly.Browser.targets - <_WebAssemblySdkToolsDirectory Condition="'$(_WebAssemblySdkToolsDirectory)' == ''">$(ArtifactsBinDir)\Microsoft.NET.Sdk.WebAssembly.Pack.Tasks\$(RuntimeConfiguration)\$(NetCoreAppToolCurrent)\ + <_WebAssemblySdkToolsDirectory Condition="'$(_WebAssemblySdkToolsDirectory)' == ''">$(ArtifactsBinDir)\Microsoft.NET.Sdk.WebAssembly.Pack.Tasks\$(RuntimeConfiguration)\ diff --git a/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets b/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets index 148ea1df48d85b..707ce66956448e 100644 --- a/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets +++ b/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets @@ -56,17 +56,19 @@ Copyright (c) .NET Foundation. All rights reserved. <_WebAssemblySdkToolsDirectory Condition="'$(_WebAssemblySdkToolsDirectory)'==''">$(MSBuildThisFileDirectory)..\tools\ - <_WebAssemblySdkTasksAssembly Condition="'$(_WebAssemblySdkTasksAssembly)' == ''">$(_WebAssemblySdkToolsDirectory)Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.dll + <_WebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' == 'Core'">net11.0 + <_WebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' != 'Core'">net472 + <_WebAssemblySdkTasksAssembly Condition="'$(_WebAssemblySdkTasksAssembly)' == ''">$(_WebAssemblySdkToolsDirectory)\$(_WebAssemblySdkTasksTFM)\Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.dll $(CompressionIncludePatterns);_framework\** true - - - - + + + + true diff --git a/src/tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.csproj b/src/tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.csproj index 485f155f1157a6..638220540d58f9 100644 --- a/src/tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.csproj +++ b/src/tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.csproj @@ -1,8 +1,8 @@ - $(NetCoreAppToolCurrent) - $(NoWarn),CA1050,CA1850,CA1845,CA1859,CS8632,NU5128 + $(NetCoreAppToolCurrent);$(NetFrameworkToolCurrent) + $(NoWarn),CA1050,CA1850,CA1845,CA1859,CA1866,CS8632,NU5128 Microsoft.NET.Sdk.WebAssembly true true @@ -19,8 +19,11 @@ - - + <_PublishFramework Remove="@(_PublishFramework)" /> + <_PublishFramework Include="$(TargetFrameworks)" /> + + + From 2a951e44fdca612b9ca1bd4decc46de4359ddaaa Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 11 Feb 2026 02:04:50 +0000 Subject: [PATCH 5/8] Update dependencies from build 301224 On relative base path root Microsoft.CodeAnalysis,Microsoft.CodeAnalysis.Analyzers,Microsoft.CodeAnalysis.CSharp,Microsoft.Net.Compilers.Toolset From Version 5.5.0-2.26110.101 -> To Version 5.5.0-2.26110.116 (parent: ) Microsoft.CodeAnalysis.NetAnalyzers,Microsoft.DotNet.ApiCompat.Task,Microsoft.NET.Workload.Emscripten.Current.Manifest-11.0.100.Transport From Version 11.0.100-preview.2.26110.101 -> To Version 11.0.100-preview.2.26110.116 (parent: ) Microsoft.DotNet.Arcade.Sdk,Microsoft.DotNet.Build.Tasks.Archives,Microsoft.DotNet.Build.Tasks.Feed,Microsoft.DotNet.Build.Tasks.Installers,Microsoft.DotNet.Build.Tasks.Packaging,Microsoft.DotNet.Build.Tasks.TargetFramework,Microsoft.DotNet.Build.Tasks.Templating,Microsoft.DotNet.Build.Tasks.Workloads,Microsoft.DotNet.CodeAnalysis,Microsoft.DotNet.GenAPI,Microsoft.DotNet.GenFacades,Microsoft.DotNet.Helix.Sdk,Microsoft.DotNet.PackageTesting,Microsoft.DotNet.RemoteExecutor,Microsoft.DotNet.SharedFramework.Sdk,Microsoft.DotNet.XliffTasks,Microsoft.DotNet.XUnitExtensions From Version 11.0.0-beta.26110.101 -> To Version 11.0.0-beta.26110.116 (parent: ) Microsoft.DotNet.Cecil From Version 0.11.5-preview.26110.101 -> To Version 0.11.5-preview.26110.116 (parent: ) Microsoft.DotNet.XUnitAssert,Microsoft.DotNet.XUnitConsoleRunner From Version 2.9.3-beta.26110.101 -> To Version 2.9.3-beta.26110.116 (parent: ) Microsoft.NET.Sdk.IL,Microsoft.NETCore.App.Ref,Microsoft.NETCore.ILAsm,runtime.native.System.IO.Ports,System.Reflection.Metadata,System.Reflection.MetadataLoadContext,System.Text.Json From Version 11.0.0-preview.2.26110.101 -> To Version 11.0.0-preview.2.26110.116 (parent: ) NuGet.Frameworks,NuGet.Packaging,NuGet.ProjectModel,NuGet.Versioning From Version 7.5.0-rc.11101 -> To Version 7.5.0-rc.11116 (parent: ) System.CommandLine From Version 3.0.0-preview.2.26110.101 -> To Version 3.0.0-preview.2.26110.116 (parent: ) runtime.linux-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.win-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.win-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.osx-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.osx-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.osx-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.osx-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.osx-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Libclang,runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools From Version 19.1.0-alpha.1.26076.1 -> To Version 19.1.0-alpha.1.26104.1 (parent: ) runtime.linux-arm64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.linux-x64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.osx-arm64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.osx-x64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.win-arm64.Microsoft.NETCore.Runtime.Wasm.Node.Transport,runtime.win-x64.Microsoft.NETCore.Runtime.Wasm.Node.Transport From Version 11.0.0-alpha.1.26076.4 -> To Version 11.0.0-alpha.1.26104.1 (parent: ) [[ commit created by automation ]] --- eng/Version.Details.props | 152 +++++++++---------- eng/Version.Details.xml | 306 +++++++++++++++++++------------------- global.json | 8 +- 3 files changed, 233 insertions(+), 233 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index b4ce89c4c7bccc..62253ff9842a02 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,75 +8,75 @@ This file should be imported by eng/Versions.props 11.0.0-alpha.1.26063.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 - 19.1.0-alpha.1.26076.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 + 19.1.0-alpha.1.26104.1 - 5.5.0-2.26110.101 - 5.5.0-2.26110.101 - 5.5.0-2.26110.101 - 11.0.100-preview.2.26110.101 - 11.0.100-preview.2.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 0.11.5-preview.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 11.0.0-beta.26110.101 - 2.9.3-beta.26110.101 - 2.9.3-beta.26110.101 - 11.0.0-beta.26110.101 - 5.5.0-2.26110.101 - 11.0.0-preview.2.26110.101 - 11.0.100-preview.2.26110.101 - 11.0.0-preview.2.26110.101 - 11.0.0-preview.2.26110.101 - 7.5.0-rc.11101 - 7.5.0-rc.11101 - 7.5.0-rc.11101 - 7.5.0-rc.11101 - 11.0.0-preview.2.26110.101 - 3.0.0-preview.2.26110.101 - 11.0.0-preview.2.26110.101 - 11.0.0-preview.2.26110.101 - 11.0.0-preview.2.26110.101 + 5.5.0-2.26110.116 + 5.5.0-2.26110.116 + 5.5.0-2.26110.116 + 11.0.100-preview.2.26110.116 + 11.0.100-preview.2.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 0.11.5-preview.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 11.0.0-beta.26110.116 + 2.9.3-beta.26110.116 + 2.9.3-beta.26110.116 + 11.0.0-beta.26110.116 + 5.5.0-2.26110.116 + 11.0.0-preview.2.26110.116 + 11.0.100-preview.2.26110.116 + 11.0.0-preview.2.26110.116 + 11.0.0-preview.2.26110.116 + 7.5.0-rc.11116 + 7.5.0-rc.11116 + 7.5.0-rc.11116 + 7.5.0-rc.11116 + 11.0.0-preview.2.26110.116 + 3.0.0-preview.2.26110.116 + 11.0.0-preview.2.26110.116 + 11.0.0-preview.2.26110.116 + 11.0.0-preview.2.26110.116 11.0.0-beta.26071.1 11.0.0-beta.26071.1 @@ -108,14 +108,14 @@ This file should be imported by eng/Versions.props 11.0.0-alpha.0.25625.1 - 11.0.0-alpha.1.26076.4 - 11.0.0-alpha.1.26076.4 - 11.0.0-alpha.1.26076.4 - 11.0.0-alpha.1.26076.4 - 11.0.0-alpha.1.26076.4 - 11.0.0-alpha.1.26076.4 - 11.0.0-alpha.1.26076.4 - 11.0.0-alpha.1.26076.4 + 11.0.0-alpha.1.26104.1 + 11.0.0-alpha.1.26104.1 + 11.0.0-alpha.1.26104.1 + 11.0.0-alpha.1.26104.1 + 11.0.0-alpha.1.26104.1 + 11.0.0-alpha.1.26104.1 + 11.0.0-alpha.1.26104.1 + 11.0.0-alpha.1.26104.1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8fa5b81b8d9fc8..e519668c1e0647 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,127 +1,127 @@ - + https://github.com/dotnet/icu b12b32d4177efa391c10895fc2ef3b7a21fb1d4d - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 https://github.com/dotnet/runtime-assets @@ -175,117 +175,117 @@ https://github.com/dotnet/runtime-assets 2497df9ce6db7a2b4082cb45b203983f977c6d5b - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/llvm-project - 57f4d3d40af50f7ba102cc071dfc217b15bded51 + d236ab665a39b0dadec765bf1fdbbff11c648be6 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 https://github.com/dotnet/xharness @@ -299,9 +299,9 @@ https://github.com/dotnet/xharness 31e0b8e08f57890f7b7004b93361d69cd4b21079 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 https://dev.azure.com/dnceng/internal/_git/dotnet-optimization @@ -327,29 +327,29 @@ https://github.com/dotnet/runtime-assets 2497df9ce6db7a2b4082cb45b203983f977c6d5b - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 https://dev.azure.com/dnceng/internal/_git/dotnet-optimization @@ -361,53 +361,53 @@ - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/dotnet - bcde5146fed551d8a3ecb4bd4051f561f8f3a4a2 + 72217c0d2d275adb380979be6f366a38292cf053 - + https://github.com/dotnet/node - 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 + a3c48e4c5cdc3096257f984739ec30f5fd2eb77f - + https://github.com/dotnet/node - 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 + a3c48e4c5cdc3096257f984739ec30f5fd2eb77f - + https://github.com/dotnet/node - 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 + a3c48e4c5cdc3096257f984739ec30f5fd2eb77f - + https://github.com/dotnet/node - 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 + a3c48e4c5cdc3096257f984739ec30f5fd2eb77f - + https://github.com/dotnet/node - 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 + a3c48e4c5cdc3096257f984739ec30f5fd2eb77f - + https://github.com/dotnet/node - 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 + a3c48e4c5cdc3096257f984739ec30f5fd2eb77f - + https://github.com/dotnet/node - 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 + a3c48e4c5cdc3096257f984739ec30f5fd2eb77f - + https://github.com/dotnet/node - 5777b87a6afdf0186b07a8ed73f73f6cfdb1f5d5 + a3c48e4c5cdc3096257f984739ec30f5fd2eb77f https://github.com/dotnet/runtime-assets diff --git a/global.json b/global.json index 37125247d4ffa8..3983566eba52d3 100644 --- a/global.json +++ b/global.json @@ -8,11 +8,11 @@ "dotnet": "11.0.100-preview.1.26078.121" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26110.101", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26110.101", - "Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26110.101", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26110.116", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26110.116", + "Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26110.116", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", - "Microsoft.NET.Sdk.IL": "11.0.0-preview.2.26110.101" + "Microsoft.NET.Sdk.IL": "11.0.0-preview.2.26110.116" } } From 25d8826e90a7b8d6073f44df91c3e2f048835a59 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Wed, 11 Feb 2026 14:04:15 -0600 Subject: [PATCH 6/8] Fix browser-wasm test restore NU1102 failures (#124288) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Problem After UseMonoRuntime was removed from in-tree wasm props (PR #121789 by @maraf), browser-wasm test restores fail with NU1102 (package not found). The `RestorePackage` target in `build.proj` runs `dotnet restore` for test dependency projects. These projects use `Microsoft.NET.Sdk` (not the WebAssembly SDK), so `UseMonoRuntime` is not set. Without it, the newer SDK tries to download `Microsoft.NETCore.App.Runtime.browser-wasm` (CoreCLR pattern) or `Microsoft.NETCore.App.Runtime.Mono.browser-wasm` from NuGet — packages that don't exist for .NET 11. The test restore doesn't need runtime or targeting packs from NuGet — those come from the local build and are wired up during the test build step. However, `EnableRuntimePackDownload=false` and `EnableTargetingPackDownload=false` were only passed conditionally (when `UseLocalAppHostPack=true`), and browser-wasm sets `UseLocalAppHostPack=false`. ## Fix Unconditionally pass `-p:EnableRuntimePackDownload=false -p:EnableTargetingPackDownload=false` to the test dependency restore command. This fixes both Mono and CoreCLR browser-wasm configurations since neither needs pack downloads during restore. ## Context - Root cause PR: #121789 (Remove duplicated UseMonoRuntime=true from SDK) - Follow-up pattern: #123181 (Added RuntimeFlavor=Mono to perf pipeline) - Affected codeflow PR: #124232 cc @maraf @akoeplinger --- src/tests/build.proj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/build.proj b/src/tests/build.proj index 79065c98a1d9c4..d3629a6857e6de 100644 --- a/src/tests/build.proj +++ b/src/tests/build.proj @@ -209,9 +209,9 @@ <_ConfigurationProperties>/p:TargetOS=$(TargetOS) /p:TargetArchitecture=$(TargetArchitecture) /p:Configuration=$(Configuration) /p:CrossBuild=$(CrossBuild) - <_ConfigurationProperties Condition="'$(UseLocalAppHostPack)' == 'true'">$(_ConfigurationProperties) -p:EnableAppHostPackDownload=false -p:EnableTargetingPackDownload=false -p:EnableRuntimePackDownload=false + <_ConfigurationProperties Condition="'$(UseLocalAppHostPack)' == 'true'">$(_ConfigurationProperties) -p:EnableAppHostPackDownload=false <_ForceRestore Condition="'$(_ForceRestore)' == 'true'">-f - "$(DotNetTool)" restore $(_ForceRestore) -r $(RuntimeIdentifier) $(RestoreProj) $(PackageVersionArg) /p:SetTFMForRestore=true /p:RuntimeIdentifier=$(RuntimeIdentifier) $(_ConfigurationProperties) + "$(DotNetTool)" restore $(_ForceRestore) -r $(RuntimeIdentifier) $(RestoreProj) $(PackageVersionArg) /p:SetTFMForRestore=true /p:RuntimeIdentifier=$(RuntimeIdentifier) -p:EnableTargetingPackDownload=false -p:EnableRuntimePackDownload=false $(_ConfigurationProperties) From 1de851976a800fe3ba7bfc45510a095e9a5311b3 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Thu, 12 Feb 2026 12:30:39 -0600 Subject: [PATCH 7/8] Fix NU1102 regression: scope pack download disable to browser-wasm only The previous fix (PR #124288) made EnableTargetingPackDownload=false and EnableRuntimePackDownload=false unconditional for all platforms. This broke coreclr/NativeAOT/Libraries test restores that need those packs from NuGet. Fix: Add 'or TargetOS==browser' to the existing UseLocalAppHostPack condition instead of making the flags unconditional. This fixes browser-wasm NU1102 while preserving original behavior for all other platforms. --- src/tests/build.proj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/build.proj b/src/tests/build.proj index d3629a6857e6de..06bc7babfa4cd1 100644 --- a/src/tests/build.proj +++ b/src/tests/build.proj @@ -209,9 +209,9 @@ <_ConfigurationProperties>/p:TargetOS=$(TargetOS) /p:TargetArchitecture=$(TargetArchitecture) /p:Configuration=$(Configuration) /p:CrossBuild=$(CrossBuild) - <_ConfigurationProperties Condition="'$(UseLocalAppHostPack)' == 'true'">$(_ConfigurationProperties) -p:EnableAppHostPackDownload=false + <_ConfigurationProperties Condition="'$(UseLocalAppHostPack)' == 'true' or '$(TargetOS)' == 'browser'">$(_ConfigurationProperties) -p:EnableAppHostPackDownload=false -p:EnableTargetingPackDownload=false -p:EnableRuntimePackDownload=false <_ForceRestore Condition="'$(_ForceRestore)' == 'true'">-f - "$(DotNetTool)" restore $(_ForceRestore) -r $(RuntimeIdentifier) $(RestoreProj) $(PackageVersionArg) /p:SetTFMForRestore=true /p:RuntimeIdentifier=$(RuntimeIdentifier) -p:EnableTargetingPackDownload=false -p:EnableRuntimePackDownload=false $(_ConfigurationProperties) + "$(DotNetTool)" restore $(_ForceRestore) -r $(RuntimeIdentifier) $(RestoreProj) $(PackageVersionArg) /p:SetTFMForRestore=true /p:RuntimeIdentifier=$(RuntimeIdentifier) $(_ConfigurationProperties) From 72007f4048d4006ba8e728e27334239186c31ff9 Mon Sep 17 00:00:00 2001 From: Steve Pfister Date: Fri, 13 Feb 2026 16:02:50 -0500 Subject: [PATCH 8/8] Fix bootstrap build for community platforms by removing RuntimeIdentifier from transitive cdac refs PR #122471 changed UseBootstrapLayout to be computed per-project from NeedsAotPublish instead of flowing transitively via subproject.props. This meant transitive references (Legacy, DataContractReader) no longer got EnableRuntimePackDownload=false, causing NU1101 errors when the SDK tried to download runtime packs for community RIDs (freebsd-x64, linux-loongarch64) that don't exist on standard feeds. Fix by adding GlobalPropertiesToRemove="RuntimeIdentifier" to the Legacy ProjectReference. These are pure managed libraries that don't need a RuntimeIdentifier during build. --- .../cdac/mscordaccore_universal/mscordaccore_universal.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj b/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj index 6017f95a8bc3fc..35615c89eda9c6 100644 --- a/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj +++ b/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj @@ -33,7 +33,7 @@ - +