From 610e9de1f1879c1d21f476cfaa784dc32bd0f8a8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 20 Aug 2026 15:42:15 +0000 Subject: [PATCH 1/8] Backflow from https://github.com/dotnet/dotnet / 1d59967 build 327888 Diff: https://github.com/dotnet/dotnet/compare/4b1cb9c66e50f301504a04e169470e035f24d273..1d599674e31ad86ca9e6e1dad7055b531e4d58e4 From: https://github.com/dotnet/dotnet/commit/4b1cb9c66e50f301504a04e169470e035f24d273 To: https://github.com/dotnet/dotnet/commit/1d599674e31ad86ca9e6e1dad7055b531e4d58e4 [[ commit created by automation ]] --- eng/build.ps1 | 15 +++++++++++++++ eng/build.sh | 14 ++++++++++++++ .../src/Microsoft.AspNetCore.Components.AI.csproj | 1 - .../AI/testassets/Directory.Build.props | 2 +- ...oft.AspNetCore.Components.Testing.Tasks.csproj | 4 ++-- .../Testing/testassets/Directory.Build.props | 2 +- 6 files changed, 33 insertions(+), 5 deletions(-) diff --git a/eng/build.ps1 b/eng/build.ps1 index 93aaf2e2b92b..44bc9c3911fe 100644 --- a/eng/build.ps1 +++ b/eng/build.ps1 @@ -99,6 +99,14 @@ Build the repository in product mode (short: -pb). .PARAMETER fromVMR Set when building from within the VMR. +.PARAMETER MSBuildMultiThreaded +Sets MSBuild's multi-threaded mode, i.e. the -mt switch (short: -mt). Opt-in for now, so off unless it is +explicitly requested. + +.PARAMETER NodeReuse +Sets the nodereuse msbuild parameter. Node reuse is disabled by default in this repository as a workaround for +issues with custom task assemblies; passing this parameter explicitly overrides that. + .EXAMPLE Building both native and managed projects. @@ -203,6 +211,13 @@ param( # Passed through to tools.ps1 MSBuild function [string]$warnNotAsError = '', + # Passed through to tools.ps1 MSBuild function + [Alias('mt')] + [bool]$msbuildMultiThreaded = $false, + + # Passed through to tools.ps1 MSBuild function + [bool]$nodeReuse = $false, + # Capture the rest [Parameter(ValueFromRemainingArguments = $true)] [string[]]$MSBuildArguments diff --git a/eng/build.sh b/eng/build.sh index 86c9f1e71cf7..e614e88efc5e 100755 --- a/eng/build.sh +++ b/eng/build.sh @@ -37,6 +37,8 @@ product_build='' from_vmr='' warn_as_error=true warn_not_as_error='' +# Empty means "not specified"; tools.sh leaves it off unless it's explicitly requested. +msbuild_multi_threaded='' from_vmr='' source "$DIR/common/native/init-os-and-arch.sh" @@ -84,6 +86,8 @@ Options: --verbosity|-v MSBuild verbosity: q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic] --warnAsError Sets warnaserror msbuild parameter: 'true' or 'false' --warnNotAsError Sets a semi-colon delimited list of warning codes that should not be treated as errors + --msbuildMultiThreaded|--mt Sets MSBuild's multi-threaded mode, i.e. the -mt switch: 'true' or 'false' + --nodeReuse Sets nodereuse msbuild parameter: 'true' or 'false' --runtime-source-feed Additional feed that can be used when downloading .NET runtimes and SDKs --runtime-source-feed-key Key for feed that can be used when downloading .NET runtimes and SDKs @@ -265,6 +269,16 @@ while [[ $# -gt 0 ]]; do [ -z "${1:-}" ] && __error "Missing value for parameter --warnNotAsError" && __usage warn_not_as_error="${1:-}" ;; + -msbuildmultithreaded|-mt) + shift + [ -z "${1:-}" ] && __error "Missing value for parameter --msbuildMultiThreaded" && __usage + msbuild_multi_threaded="${1:-}" + ;; + -nodereuse) + shift + [ -z "${1:-}" ] && __error "Missing value for parameter --nodeReuse" && __usage + node_reuse="${1:-}" + ;; *) msbuild_args[${#msbuild_args[*]}]="$1" ;; diff --git a/src/Components/AI/src/Microsoft.AspNetCore.Components.AI.csproj b/src/Components/AI/src/Microsoft.AspNetCore.Components.AI.csproj index f69d5ee15ce3..9307fad57e89 100644 --- a/src/Components/AI/src/Microsoft.AspNetCore.Components.AI.csproj +++ b/src/Components/AI/src/Microsoft.AspNetCore.Components.AI.csproj @@ -32,7 +32,6 @@ - diff --git a/src/Components/AI/testassets/Directory.Build.props b/src/Components/AI/testassets/Directory.Build.props index 70ac9e91d925..5953c9c240bd 100644 --- a/src/Components/AI/testassets/Directory.Build.props +++ b/src/Components/AI/testassets/Directory.Build.props @@ -4,7 +4,7 @@ false <_ImportComponentsTestingTargets>true - <_ImportComponentsTestingTargets Condition="'$(ExcludeFromBuild)' == 'true' or '$(SkipTestBuild)' == 'true' or '$(DotNetBuildSourceOnly)' == 'true'">false + <_ImportComponentsTestingTargets Condition="'$(ExcludeFromBuild)' == 'true' or '$(SkipTestBuild)' == 'true' or '$(DotNetBuildSourceOnly)' == 'true' or ('$(DotNetBuild)' == 'true' and '$(DotNetBuildTests)' != 'true')">false $(NoWarn);NU1903 diff --git a/src/Components/Testing/tasks/Microsoft.AspNetCore.Components.Testing.Tasks.csproj b/src/Components/Testing/tasks/Microsoft.AspNetCore.Components.Testing.Tasks.csproj index 16ee254de3ad..2e9a645c7447 100644 --- a/src/Components/Testing/tasks/Microsoft.AspNetCore.Components.Testing.Tasks.csproj +++ b/src/Components/Testing/tasks/Microsoft.AspNetCore.Components.Testing.Tasks.csproj @@ -7,8 +7,8 @@ disable false false - - $(NoWarn);NU1903;NU1902;NU1901;RS0016;RS0017;CA1852 + + $(NoWarn);RS0016;RS0017;CA1852 diff --git a/src/Components/Testing/testassets/Directory.Build.props b/src/Components/Testing/testassets/Directory.Build.props index 3d93c5efd823..6b759918cb4b 100644 --- a/src/Components/Testing/testassets/Directory.Build.props +++ b/src/Components/Testing/testassets/Directory.Build.props @@ -4,7 +4,7 @@ false <_ImportComponentsTestingTargets>true - <_ImportComponentsTestingTargets Condition="'$(ExcludeFromBuild)' == 'true' or '$(SkipTestBuild)' == 'true' or '$(DotNetBuildSourceOnly)' == 'true'">false + <_ImportComponentsTestingTargets Condition="'$(ExcludeFromBuild)' == 'true' or '$(SkipTestBuild)' == 'true' or '$(DotNetBuildSourceOnly)' == 'true' or ('$(DotNetBuild)' == 'true' and '$(DotNetBuildTests)' != 'true')">false $(NoWarn);NU1903 From 6d38e868ccd1a565887dd6f45e0e6d81198bf596 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 20 Aug 2026 15:42:17 +0000 Subject: [PATCH 2/8] Update dependencies from build 327888 Updated Dependencies: Microsoft.NET.Runtime.WebAssembly.Sdk, Microsoft.NETCore.BrowserDebugHost.Transport, Microsoft.NET.Runtime.MonoAOTCompiler.Task, dotnet-ef, Microsoft.Bcl.AsyncInterfaces, Microsoft.Bcl.Cryptography, Microsoft.Bcl.TimeProvider, Microsoft.EntityFrameworkCore, Microsoft.EntityFrameworkCore.Design, Microsoft.EntityFrameworkCore.InMemory, Microsoft.EntityFrameworkCore.Relational, Microsoft.EntityFrameworkCore.Sqlite, Microsoft.EntityFrameworkCore.SqlServer, Microsoft.EntityFrameworkCore.Tools, Microsoft.Extensions.Caching.Abstractions, Microsoft.Extensions.Caching.Memory, Microsoft.Extensions.Configuration, Microsoft.Extensions.Configuration.Abstractions, Microsoft.Extensions.Configuration.Binder, Microsoft.Extensions.Configuration.CommandLine, Microsoft.Extensions.Configuration.EnvironmentVariables, Microsoft.Extensions.Configuration.FileExtensions, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.Configuration.Json, Microsoft.Extensions.Configuration.UserSecrets, Microsoft.Extensions.Configuration.Xml, Microsoft.Extensions.DependencyInjection, Microsoft.Extensions.DependencyInjection.Abstractions, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.Diagnostics, Microsoft.Extensions.Diagnostics.Abstractions, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Composite, Microsoft.Extensions.FileProviders.Physical, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.HostFactoryResolver.Sources, Microsoft.Extensions.Hosting, Microsoft.Extensions.Hosting.Abstractions, Microsoft.Extensions.Http, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Configuration, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.Logging.Debug, Microsoft.Extensions.Logging.EventLog, Microsoft.Extensions.Logging.EventSource, Microsoft.Extensions.Logging.TraceSource, Microsoft.Extensions.Options, Microsoft.Extensions.Options.ConfigurationExtensions, Microsoft.Extensions.Options.DataAnnotations, Microsoft.Extensions.Primitives, Microsoft.Internal.Runtime.AspNetCore.Transport, Microsoft.NETCore.App.Ref, Microsoft.NETCore.Platforms, System.Collections.Immutable, System.Composition, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Diagnostics.EventLog, System.Diagnostics.PerformanceCounter, System.DirectoryServices.Protocols, System.Formats.Asn1, System.Formats.Cbor, System.IO.Hashing, System.IO.Pipelines, System.Memory.Data, System.Net.Http.Json, System.Net.Http.WinHttpHandler, System.Net.ServerSentEvents, System.Numerics.Tensors, System.Reflection.Metadata, System.Resources.Extensions, System.Runtime.Caching, System.Security.Cryptography.Pkcs, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encodings.Web, System.Text.Json, System.Threading.AccessControl, System.Threading.Channels, System.Threading.RateLimiting (Version 11.0.0-rc.1.26410.101 -> 11.0.0-rc.1.26420.103) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Archives, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.RemoteExecutor, Microsoft.DotNet.SharedFramework.Sdk (Version 11.0.0-beta.26410.101 -> 11.0.0-beta.26420.103) Microsoft.DotNet.Helix.JobMonitor (Version 11.0.0-beta.26412.2 -> 11.0.0-beta.26420.103) Microsoft.Web.Xdt (Version 3.3.0-rc.1.26410.101 -> 3.3.0-rc.1.26420.103) NuGet.Frameworks, NuGet.Packaging, NuGet.Versioning (Version 7.11.0-rc.41101 -> 7.11.0-rc.42103) [[ commit created by automation ]] --- .config/dotnet-tools.json | 10 +- eng/Version.Details.props | 193 +++++---- eng/Version.Details.xml | 380 +++++++++--------- eng/common/Get-GitHubAppToken.ps1 | 18 +- eng/common/SetupNugetSources.ps1 | 38 +- eng/common/SetupNugetSources.sh | 4 +- eng/common/build.ps1 | 7 +- eng/common/build.sh | 14 +- .../core-templates/post-build/post-build.yml | 1 + .../steps/enable-internal-sources.yml | 12 +- .../core-templates/steps/publish-logs.yml | 22 +- eng/common/msbuild.ps1 | 10 +- eng/common/msbuild.sh | 16 +- eng/common/tools.ps1 | 11 +- eng/common/tools.sh | 24 +- global.json | 12 +- 16 files changed, 410 insertions(+), 362 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 38d2c640975c..75db804b14d8 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,19 +3,19 @@ "isRoot": true, "tools": { "dotnet-dump": { - "version": "6.0.408101", + "version": "6.0.322601", "commands": [ "dotnet-dump" ] }, "dotnet-ef": { - "version": "11.0.0-rc.1.26410.101", + "version": "11.0.0-rc.1.26420.103", "commands": [ "dotnet-ef" ] }, "dotnet-serve": { - "version": "1.10.194", + "version": "1.10.93", "commands": [ "dotnet-serve" ] @@ -27,10 +27,10 @@ ] }, "microsoft.dotnet.helix.jobmonitor": { - "version": "11.0.0-beta.26412.2", + "version": "11.0.0-beta.26420.103", "commands": [ "dotnet-helix-job-monitor" ] } } -} \ No newline at end of file +} diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 521ce1d8e78c..2061f1236801 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,100 +6,100 @@ This file should be imported by eng/Versions.props - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-beta.26410.101 - 11.0.0-beta.26410.101 - 11.0.0-beta.26410.101 - 11.0.0-beta.26410.101 - 11.0.0-beta.26412.2 - 11.0.0-beta.26410.101 - 11.0.0-beta.26410.101 - 11.0.0-beta.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 3.3.0-rc.1.26410.101 - 7.11.0-rc.41101 - 7.11.0-rc.41101 - 7.11.0-rc.41101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 - 11.0.0-rc.1.26410.101 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-beta.26420.103 + 11.0.0-beta.26420.103 + 11.0.0-beta.26420.103 + 11.0.0-beta.26420.103 + 11.0.0-beta.26420.103 + 11.0.0-beta.26420.103 + 11.0.0-beta.26420.103 + 11.0.0-beta.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 3.3.0-rc.1.26420.103 + 7.11.0-rc.42103 + 7.11.0-rc.42103 + 7.11.0-rc.42103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.103 10.8.3 10.8.3 @@ -125,17 +125,16 @@ This file should be imported by eng/Versions.props - - $(MicrosoftDotNetArcadeSdkPackageVersion) - $(MicrosoftDotNetHelixJobMonitorPackageVersion) $(dotnetefPackageVersion) $(MicrosoftBclAsyncInterfacesPackageVersion) $(MicrosoftBclCryptographyPackageVersion) $(MicrosoftBclTimeProviderPackageVersion) + $(MicrosoftDotNetArcadeSdkPackageVersion) $(MicrosoftDotNetBuildTasksArchivesPackageVersion) $(MicrosoftDotNetBuildTasksInstallersPackageVersion) $(MicrosoftDotNetBuildTasksTemplatingPackageVersion) + $(MicrosoftDotNetHelixJobMonitorPackageVersion) $(MicrosoftDotNetHelixSdkPackageVersion) $(MicrosoftDotNetRemoteExecutorPackageVersion) $(MicrosoftDotNetSharedFrameworkSdkPackageVersion) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5dee60fb66f6..4e315335018e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -8,333 +8,333 @@ See https://github.com/dotnet/arcade/blob/master/Documentation/Darc.md for instructions on using darc. --> - + - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 @@ -355,48 +355,48 @@ afdd413cee50c16318620252e4e64dc326e2d300 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - - https://github.com/dotnet/arcade - 2a4b873dc15423d356c0509a7ac9663276f39664 + + https://github.com/dotnet/dotnet + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 https://github.com/dotnet/extensions @@ -456,17 +456,17 @@ https://github.com/dotnet/msbuild d1cce8d7cc03c23a4f1bad8e9240714fd9d199a3 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 - + https://github.com/dotnet/dotnet - 64a29867c5c5c8e0babc9e31313cf3b6e50f0193 + 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 diff --git a/eng/common/Get-GitHubAppToken.ps1 b/eng/common/Get-GitHubAppToken.ps1 index 6b5899d7a299..9c7e3dcd6ac4 100644 --- a/eng/common/Get-GitHubAppToken.ps1 +++ b/eng/common/Get-GitHubAppToken.ps1 @@ -113,10 +113,13 @@ try { $installations = @() $page = 1 do { - $pageInstallations = @(Invoke-RestMethod ` + # Assign the response before wrapping it in @(). PowerShell otherwise + # preserves a top-level JSON array as one nested pipeline object. + $pageResponse = Invoke-RestMethod ` -Uri "https://api.github.com/app/installations?per_page=100&page=$page" ` -Headers $headers ` - -Method Get) + -Method Get + $pageInstallations = @($pageResponse) $installations += $pageInstallations $page++ } while ($pageInstallations.Count -eq 100) @@ -125,12 +128,19 @@ catch { Write-PipelineTelemetryError -Category 'Build' -Message "Failed to list GitHub App installations: $_. The signed JWT may be invalid or the App's Client ID ('$AppClientId') may be incorrect." exit 1 } -$installation = $installations | Where-Object { $_.account.login -ieq $InstallationOwner } | Select-Object -First 1 -if (-not $installation) { +$matchingInstallations = @($installations | Where-Object { $_.account.login -ieq $InstallationOwner }) +if ($matchingInstallations.Count -eq 0) { $found = ($installations | ForEach-Object { $_.account.login }) -join ', ' Write-PipelineTelemetryError -Category 'Build' -Message "No installation found for '$InstallationOwner'. App is installed on: $found" exit 1 } +if ($matchingInstallations.Count -ne 1) { + $matchingIds = ($matchingInstallations | ForEach-Object { $_.id }) -join ', ' + Write-PipelineTelemetryError -Category 'Build' -Message "Found multiple installations for '$InstallationOwner': $matchingIds" + exit 1 +} +$installation = $matchingInstallations[0] +Write-Host "Using installation $($installation.id) for '$($installation.account.login)'." try { $tokenResponse = Invoke-RestMethod ` diff --git a/eng/common/SetupNugetSources.ps1 b/eng/common/SetupNugetSources.ps1 index b3bddff355e7..b7a3769364dd 100644 --- a/eng/common/SetupNugetSources.ps1 +++ b/eng/common/SetupNugetSources.ps1 @@ -11,7 +11,7 @@ # condition: eq(variables['Agent.OS'], 'Windows_NT') # inputs: # filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.ps1 -# arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config -Password $Env:Token +# arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config # env: # Token: $(InternalFeedToken) # @@ -29,12 +29,14 @@ [CmdletBinding()] param ( [Parameter(Mandatory = $true)][string]$ConfigFile, - $Password + # Keep the legacy name as an alias while callers migrate secrets to the Token environment variable. + [Alias("Password")]$Credential ) $ErrorActionPreference = "Stop" Set-StrictMode -Version 2.0 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 +$feedCredential = if ($env:Token) { $env:Token } else { $Credential } # This script only consumes helper functions from tools.ps1 to configure NuGet feeds. # Skip importing configure-toolset.ps1 so that repo-specific toolset setup (e.g. acquiring @@ -44,14 +46,14 @@ $disableConfigureToolsetImport = $true . $PSScriptRoot\tools.ps1 # Adds or enables the package source with the given name -function AddOrEnablePackageSource($sources, $disabledPackageSources, $SourceName, $SourceEndPoint, $creds, $Username, $pwd) { - if ($disabledPackageSources -eq $null -or -not (EnableInternalPackageSource -DisabledPackageSources $disabledPackageSources -Creds $creds -PackageSourceName $SourceName)) { - AddPackageSource -Sources $sources -SourceName $SourceName -SourceEndPoint $SourceEndPoint -Creds $creds -Username $userName -pwd $Password +function AddOrEnablePackageSource($sources, $disabledPackageSources, $SourceName, $SourceEndPoint, $creds, $Username, $credential) { + if ($disabledPackageSources -eq $null -or -not (EnableInternalPackageSource -DisabledPackageSources $disabledPackageSources -Creds $creds -PackageSourceName $SourceName -Credential $credential)) { + AddPackageSource -Sources $sources -SourceName $SourceName -SourceEndPoint $SourceEndPoint -Creds $creds -Username $Username -credential $credential } } # Add source entry to PackageSources -function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Username, $pwd) { +function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Username, $credential) { $packageSource = $sources.SelectSingleNode("add[@key='$SourceName']") if ($packageSource -eq $null) @@ -67,13 +69,13 @@ function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Usern Write-Host "Package source $SourceName already present and enabled." } - AddCredential -Creds $creds -Source $SourceName -Username $Username -pwd $pwd + AddCredential -Creds $creds -Source $SourceName -Username $Username -credential $credential } # Add a credential node for the specified source -function AddCredential($creds, $source, $username, $pwd) { +function AddCredential($creds, $source, $username, $credential) { # If no cred supplied, don't do anything. - if (!$pwd) { + if (!$credential) { return; } @@ -108,19 +110,19 @@ function AddCredential($creds, $source, $username, $pwd) { $sourceElement.AppendChild($passwordElement) | Out-Null } - $passwordElement.SetAttribute("value", $pwd) + $passwordElement.SetAttribute("value", $credential) } # Enable all darc-int package sources. -function EnableMaestroInternalPackageSources($DisabledPackageSources, $Creds) { +function EnableMaestroInternalPackageSources($DisabledPackageSources, $Creds, $Credential) { $maestroInternalSources = $DisabledPackageSources.SelectNodes("add[contains(@key,'darc-int')]") ForEach ($DisabledPackageSource in $maestroInternalSources) { - EnableInternalPackageSource -DisabledPackageSources $DisabledPackageSources -Creds $Creds -PackageSourceName $DisabledPackageSource.key + EnableInternalPackageSource -DisabledPackageSources $DisabledPackageSources -Creds $Creds -PackageSourceName $DisabledPackageSource.key -Credential $Credential } } # Enables an internal package source by name, if found. Returns true if the package source was found and enabled, false otherwise. -function EnableInternalPackageSource($DisabledPackageSources, $Creds, $PackageSourceName) { +function EnableInternalPackageSource($DisabledPackageSources, $Creds, $PackageSourceName, $Credential) { $DisabledPackageSource = $DisabledPackageSources.SelectSingleNode("add[@key='$PackageSourceName']") if ($DisabledPackageSource) { Write-Host "Enabling internal source '$($DisabledPackageSource.key)'." @@ -128,7 +130,7 @@ function EnableInternalPackageSource($DisabledPackageSources, $Creds, $PackageSo # Due to https://github.com/NuGet/Home/issues/10291, we must actually remove the disabled entries $DisabledPackageSources.RemoveChild($DisabledPackageSource) - AddCredential -Creds $creds -Source $DisabledPackageSource.Key -Username $userName -pwd $Password + AddCredential -Creds $creds -Source $DisabledPackageSource.Key -Username $userName -credential $credential return $true } return $false @@ -153,7 +155,7 @@ if ($sources -eq $null) { $creds = $null $feedSuffix = "v3/index.json" -if ($Password) { +if ($feedCredential) { $feedSuffix = "v2" # Looks for a node. Create it if none is found. $creds = $doc.DocumentElement.SelectSingleNode("packageSourceCredentials") @@ -169,7 +171,7 @@ $userName = "dn-bot" $disabledSources = $doc.DocumentElement.SelectSingleNode("disabledPackageSources") if ($disabledSources -ne $null) { Write-Host "Checking for any darc-int disabled package sources in the disabledPackageSources node" - EnableMaestroInternalPackageSources -DisabledPackageSources $disabledSources -Creds $creds + EnableMaestroInternalPackageSources -DisabledPackageSources $disabledSources -Creds $creds -Credential $feedCredential } $dotnetVersions = @('5','6','7','8','9','10') @@ -177,8 +179,8 @@ foreach ($dotnetVersion in $dotnetVersions) { $feedPrefix = "dotnet" + $dotnetVersion; $dotnetSource = $sources.SelectSingleNode("add[@key='$feedPrefix']") if ($dotnetSource -ne $null) { - AddOrEnablePackageSource -Sources $sources -DisabledPackageSources $disabledSources -SourceName "$feedPrefix-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal/nuget/$feedSuffix" -Creds $creds -Username $userName -pwd $Password - AddOrEnablePackageSource -Sources $sources -DisabledPackageSources $disabledSources -SourceName "$feedPrefix-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal-transport/nuget/$feedSuffix" -Creds $creds -Username $userName -pwd $Password + AddOrEnablePackageSource -Sources $sources -DisabledPackageSources $disabledSources -SourceName "$feedPrefix-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal/nuget/$feedSuffix" -Creds $creds -Username $userName -credential $feedCredential + AddOrEnablePackageSource -Sources $sources -DisabledPackageSources $disabledSources -SourceName "$feedPrefix-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal-transport/nuget/$feedSuffix" -Creds $creds -Username $userName -credential $feedCredential } } diff --git a/eng/common/SetupNugetSources.sh b/eng/common/SetupNugetSources.sh index 67e7e0942ca1..c3ae8ac054fe 100755 --- a/eng/common/SetupNugetSources.sh +++ b/eng/common/SetupNugetSources.sh @@ -24,7 +24,9 @@ # This logic is also abstracted into enable-internal-sources.yml. ConfigFile=$1 -CredToken=$2 +# Prefer the environment variable so credentials do not appear in process arguments. +# Retain the positional argument as a compatibility fallback for existing callers. +CredToken=${Token:-$2} NL='\n' TB=' ' diff --git a/eng/common/build.ps1 b/eng/common/build.ps1 index dd84699f500c..fee2f839919a 100644 --- a/eng/common/build.ps1 +++ b/eng/common/build.ps1 @@ -8,6 +8,7 @@ Param( [bool] $warnAsError = $true, [string] $warnNotAsError = '', [bool] $nodeReuse = $true, + [bool][Alias('mt')]$msbuildMultiThreaded = $false, [switch] $buildCheck = $false, [switch][Alias('r')]$restore, [switch] $deployDeps, @@ -79,6 +80,7 @@ function Print-Usage() { Write-Host " -excludePrereleaseVS Set to exclude build engines in prerelease versions of Visual Studio" Write-Host " -nativeToolsOnMachine Sets the native tools on machine environment variable (indicating that the script should use native tools on machine)" Write-Host " -nodeReuse Sets nodereuse msbuild parameter ('true' or 'false')" + Write-Host " -msbuildMultiThreaded Sets MSBuild's multi-threaded mode, i.e. the -mt switch ('1' or '0') (short: -mt)" Write-Host " -buildCheck Sets /check msbuild parameter" Write-Host " -fromVMR Set when building from within the VMR" Write-Host " -disablePipelineSetResult Set to disable masking the actual exit code in the pipeline when the build fails" @@ -175,9 +177,8 @@ try { if (-not $excludeCIBinarylog) { $binaryLog = $true } - # Disable node reuse on CI unless explicitly opted in via MSBUILD_NODEREUSE_ENABLED. - # Internal testing only; this env var will be replaced with a switch (https://github.com/dotnet/arcade/issues/17013) and must not be depended on. - if ($env:MSBUILD_NODEREUSE_ENABLED -ne "1") { + # Node reuse isn't used on CI unless it was explicitly requested via -nodeReuse. + if (-not $PSBoundParameters.ContainsKey('nodeReuse')) { $nodeReuse = $false } } diff --git a/eng/common/build.sh b/eng/common/build.sh index e37edd6cff34..109d83ff73f7 100755 --- a/eng/common/build.sh +++ b/eng/common/build.sh @@ -43,6 +43,7 @@ usage() echo " --pipelinesLog Promote msbuild errors/warnings to Azure Pipelines timeline issues; defaults to on in CI (short: -pl)" echo " --prepareMachine Prepare machine for CI run, clean up processes after build" echo " --nodeReuse Sets nodereuse msbuild parameter ('true' or 'false')" + echo " --msbuildMultiThreaded Sets MSBuild's multi-threaded mode, i.e. the -mt switch ('true' or 'false') (short: --mt)" echo " --warnAsError Sets warnaserror msbuild parameter ('true' or 'false')" echo " --warnNotAsError Sets a semi-colon delimited list of warning codes that should not be treated as errors" echo " --buildCheck Sets /check msbuild parameter" @@ -84,7 +85,9 @@ clean=false warn_as_error=true warn_not_as_error='' -node_reuse=true +# Empty means "not specified"; tools.sh defaults these to on for local builds and off on CI. +node_reuse='' +msbuild_multi_threaded='' build_check=false binary_log=false binary_log_name='' @@ -199,6 +202,10 @@ while [[ $# -gt 0 ]]; do node_reuse=$2 shift ;; + -msbuildmultithreaded|-mt) + msbuild_multi_threaded=$2 + shift + ;; -buildcheck) build_check=true ;; @@ -224,11 +231,6 @@ fi if [[ "$ci" == true ]]; then pipelines_log=true - # Disable node reuse on CI unless explicitly opted in via MSBUILD_NODEREUSE_ENABLED. - # Internal testing only; this env var will be replaced with a switch (https://github.com/dotnet/arcade/issues/17013) and must not be depended on. - if [[ "${MSBUILD_NODEREUSE_ENABLED:-}" != "1" ]]; then - node_reuse=false - fi if [[ "$exclude_ci_binary_log" == false ]]; then binary_log=true fi diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index 9d951352696e..6dcee6664d68 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -236,6 +236,7 @@ stages: StageLabel: 'Validation' JobLabel: 'Signing' BinlogToolVersion: $(BinlogToolVersion) + enableInternalRuntimes: false # SourceLink validation has been removed — the underlying CLI tool # (targeting netcoreapp2.1) has not functioned for years. diff --git a/eng/common/core-templates/steps/enable-internal-sources.yml b/eng/common/core-templates/steps/enable-internal-sources.yml index 51af9a017091..843cdff7821e 100644 --- a/eng/common/core-templates/steps/enable-internal-sources.yml +++ b/eng/common/core-templates/steps/enable-internal-sources.yml @@ -19,7 +19,7 @@ steps: displayName: Setup Internal Feeds inputs: filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.ps1 - arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config -Password $Env:Token + arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config env: Token: ${{ parameters.legacyCredential }} - task: Bash@3 @@ -28,7 +28,7 @@ steps: inputs: targetType: inline script: | - "$(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh" "$(System.DefaultWorkingDirectory)/NuGet.config" "$Token" + "$(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh" "$(System.DefaultWorkingDirectory)/NuGet.config" env: Token: ${{ parameters.legacyCredential }} # If running on dnceng (internal project), just use the default behavior for NuGetAuthenticate. @@ -58,13 +58,17 @@ steps: displayName: Setup Internal Feeds inputs: filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.ps1 - arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config -Password $(dnceng-artifacts-feeds-read-access-token) + arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config + env: + Token: $(dnceng-artifacts-feeds-read-access-token) - task: Bash@3 condition: and(succeeded(), ne(variables['Agent.Os'], 'Windows_NT')) displayName: Setup Internal Feeds inputs: filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh - arguments: $(System.DefaultWorkingDirectory)/NuGet.config $(dnceng-artifacts-feeds-read-access-token) + arguments: $(System.DefaultWorkingDirectory)/NuGet.config + env: + Token: $(dnceng-artifacts-feeds-read-access-token) # This is required in certain scenarios to install the ADO credential provider. # It installed by default in some msbuild invocations (e.g. VS msbuild), but needs to be installed for others # (e.g. dotnet msbuild). diff --git a/eng/common/core-templates/steps/publish-logs.yml b/eng/common/core-templates/steps/publish-logs.yml index 2c1e0ab11620..3f0a9b9e6aa0 100644 --- a/eng/common/core-templates/steps/publish-logs.yml +++ b/eng/common/core-templates/steps/publish-logs.yml @@ -5,6 +5,7 @@ parameters: # A default - in case value from eng/common/core-templates/post-build/common-variables.yml is not passed BinlogToolVersion: '1.0.11' is1ESPipeline: false + enableInternalRuntimes: true steps: - task: Powershell@2 @@ -25,13 +26,20 @@ steps: # Sensitive data can as well be added to $(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' # If the file exists - sensitive data for redaction will be sourced from it # (single entry per line, lines starting with '# ' are considered comments and skipped) - arguments: -InputPath '$(System.DefaultWorkingDirectory)/PostBuildLogs' - -BinlogToolVersion '${{parameters.BinlogToolVersion}}' - -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' - -runtimeSourceFeed https://ci.dot.net/internal - -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' - '$(System.AccessToken)' - ${{parameters.CustomSensitiveDataList}} + ${{ if and(parameters.enableInternalRuntimes, ne(variables['System.TeamProject'], 'public')) }}: + arguments: -InputPath '$(System.DefaultWorkingDirectory)/PostBuildLogs' + -BinlogToolVersion '${{parameters.BinlogToolVersion}}' + -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' + -runtimeSourceFeed https://ci.dot.net/internal + -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' + '$(System.AccessToken)' + ${{parameters.CustomSensitiveDataList}} + ${{ else }}: + arguments: -InputPath '$(System.DefaultWorkingDirectory)/PostBuildLogs' + -BinlogToolVersion '${{parameters.BinlogToolVersion}}' + -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' + '$(System.AccessToken)' + ${{parameters.CustomSensitiveDataList}} continueOnError: true condition: always() diff --git a/eng/common/msbuild.ps1 b/eng/common/msbuild.ps1 index 495d533a9098..b6dfb570ea50 100644 --- a/eng/common/msbuild.ps1 +++ b/eng/common/msbuild.ps1 @@ -3,6 +3,7 @@ Param( [string] $verbosity = 'minimal', [bool] $warnAsError = $true, [bool] $nodeReuse = $true, + [bool][Alias('mt')]$msbuildMultiThreaded = $false, [switch] $ci, [switch] $prepareMachine, [switch] $excludePrereleaseVS, @@ -13,12 +14,9 @@ Param( . $PSScriptRoot\tools.ps1 try { - if ($ci) { - # Disable node reuse on CI unless explicitly opted in via MSBUILD_NODEREUSE_ENABLED. - # Internal testing only; this env var will be replaced with a switch (https://github.com/dotnet/arcade/issues/17013) and must not be depended on. - if ($env:MSBUILD_NODEREUSE_ENABLED -ne "1") { - $nodeReuse = $false - } + # Node reuse isn't used on CI unless it was explicitly requested via -nodeReuse. + if ($ci -and -not $PSBoundParameters.ContainsKey('nodeReuse')) { + $nodeReuse = $false } MSBuild @extraArgs diff --git a/eng/common/msbuild.sh b/eng/common/msbuild.sh index 333be3232fcf..a40c101237b1 100755 --- a/eng/common/msbuild.sh +++ b/eng/common/msbuild.sh @@ -14,7 +14,9 @@ scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" verbosity='minimal' warn_as_error=true -node_reuse=true +# Empty means "not specified"; tools.sh defaults these to on for local builds and off on CI. +node_reuse='' +msbuild_multi_threaded='' prepare_machine=false extra_args='' @@ -33,6 +35,10 @@ while (($# > 0)); do node_reuse=$2 shift 2 ;; + --msbuildmultithreaded|--mt) + msbuild_multi_threaded=$2 + shift 2 + ;; --ci) ci=true shift 1 @@ -50,13 +56,5 @@ done . "$scriptroot/tools.sh" -if [[ "$ci" == true ]]; then - # Disable node reuse on CI unless explicitly opted in via MSBUILD_NODEREUSE_ENABLED. - # Internal testing only; this env var will be replaced with a switch (https://github.com/dotnet/arcade/issues/17013) and must not be depended on. - if [[ "${MSBUILD_NODEREUSE_ENABLED:-}" != "1" ]]; then - node_reuse=false - fi -fi - MSBuild $extra_args ExitWithExitCode 0 diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index da07386ff1fe..e84033dad90c 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -31,11 +31,16 @@ # Set to true to reuse msbuild nodes. Recommended to not reuse on CI. [bool]$nodeReuse = if (Test-Path variable:nodeReuse) { $nodeReuse } else { !$ci } +# Set to true to build with MSBuild's multi-threaded mode (-mt). Opt-in for now, so off unless it was +# explicitly requested. It's intended to become the default for local builds once it has proven out. +[bool]$msbuildMultiThreaded = if (Test-Path variable:msbuildMultiThreaded) { $msbuildMultiThreaded } else { $false } + # Configures warning treatment in msbuild. [bool]$warnAsError = if (Test-Path variable:warnAsError) { $warnAsError } else { $true } # Specifies semi-colon delimited list of warning codes that should not be treated as errors. -[string]$warnNotAsError = if (Test-Path variable:warnNotAsError) { $warnNotAsError } else { '' } +# Defaults to NuGet Audit warning codes NU1901-NU1904. +[string]$warnNotAsError = if ((Test-Path variable:warnNotAsError) -and $warnNotAsError) { $warnNotAsError } else { 'NU1901;NU1902;NU1903;NU1904' } # Specifies which msbuild engine to use for build: 'vs', 'dotnet' or unspecified (determined based on presence of tools.vs in global.json). [string]$msbuildEngine = if (Test-Path variable:msbuildEngine) { $msbuildEngine } else { $null } @@ -808,8 +813,8 @@ function MSBuild() { $cmdArgs = "$($buildTool.Command) /m /nologo /clp:Summary /v:$verbosity /nr:$nodeReuse /p:ContinuousIntegrationBuild=$ci" - # Add -mt flag for MSBuild multithreaded mode if enabled via environment variable - if ($env:MSBUILD_MT_ENABLED -eq "1") { + # Build with MSBuild's multi-threaded mode. + if ($msbuildMultiThreaded) { $cmdArgs += ' -mt' } diff --git a/eng/common/tools.sh b/eng/common/tools.sh index 20f791c11dee..4d14b100b063 100755 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -1,5 +1,15 @@ #!/usr/bin/env bash +# Normalizes the value of a boolean build argument. Accepts 1/0 in addition to true/false so that +# the same value works with the PowerShell scripts, whose [bool] parameters only bind 1/0. +function NormalizeBoolArg { + case "${1:-}" in + 1) echo true ;; + 0) echo false ;; + *) echo "${1:-}" ;; + esac +} + # Initialize variables if they aren't already defined. # CI mode - set to true on CI server for PR validation build or official build. @@ -43,17 +53,25 @@ restore=${restore:-true} verbosity=${verbosity:-'minimal'} # Set to true to reuse msbuild nodes. Recommended to not reuse on CI. +node_reuse=$(NormalizeBoolArg "${node_reuse:-}") if [[ "$ci" == true ]]; then node_reuse=${node_reuse:-false} else node_reuse=${node_reuse:-true} fi +# Set to true to build with MSBuild's multi-threaded mode (-mt). Opt-in for now, so off unless it was +# explicitly requested. It's intended to become the default for local builds once it has proven out. +msbuild_multi_threaded=$(NormalizeBoolArg "${msbuild_multi_threaded:-}") +msbuild_multi_threaded=${msbuild_multi_threaded:-false} + # Configures warning treatment in msbuild. +warn_as_error=$(NormalizeBoolArg "${warn_as_error:-}") warn_as_error=${warn_as_error:-true} # Specifies semi-colon delimited list of warning codes that should not be treated as errors. -warn_not_as_error=${warn_not_as_error:-''} +# Defaults to NuGet Audit warning codes NU1901-NU1904. +warn_not_as_error="${warn_not_as_error:-NU1901;NU1902;NU1903;NU1904}" # True to attempt using .NET Core already that meets requirements specified in global.json # installed on the machine instead of downloading one. @@ -587,9 +605,9 @@ function MSBuild { } } - # Add -mt flag for MSBuild multithreaded mode if enabled via environment variable + # Build with MSBuild's multi-threaded mode. local mt_switch="" - if [[ "${MSBUILD_MT_ENABLED:-}" == "1" ]]; then + if [[ "$msbuild_multi_threaded" == true ]]; then mt_switch="-mt" fi diff --git a/global.json b/global.json index af7bc0af795e..9a2186c48adc 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "11.0.100-preview.6.26359.118", + "version": "11.0.100-preview.7.26381.103", "paths": [ ".dotnet", "$host$" @@ -8,7 +8,7 @@ "errorMessage": "The .NET SDK could not be found, run ./restore.cmd or ./restore.sh first." }, "tools": { - "dotnet": "11.0.100-preview.6.26359.118", + "dotnet": "11.0.100-preview.7.26381.103", "runtimes": { "dotnet/x86": [ "$(MicrosoftInternalRuntimeAspNetCoreTransportVersion)" @@ -22,11 +22,11 @@ "jdk": "latest" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26410.101", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26410.101", - "Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26410.101", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26420.103", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26420.103", + "Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26420.103", "Microsoft.Build.NoTargets": "3.7.134", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "6.0.3-dotnet.6" } -} \ No newline at end of file +} From 7af51bd16b655d1141b73d8783cc71122758a913 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 21 Aug 2026 07:21:52 +0000 Subject: [PATCH 3/8] Update dependencies from build 327992 Updated Dependencies: Microsoft.NET.Runtime.WebAssembly.Sdk, Microsoft.NETCore.BrowserDebugHost.Transport, Microsoft.NET.Runtime.MonoAOTCompiler.Task, dotnet-ef, Microsoft.Bcl.AsyncInterfaces, Microsoft.Bcl.Cryptography, Microsoft.Bcl.TimeProvider, Microsoft.EntityFrameworkCore, Microsoft.EntityFrameworkCore.Design, Microsoft.EntityFrameworkCore.InMemory, Microsoft.EntityFrameworkCore.Relational, Microsoft.EntityFrameworkCore.Sqlite, Microsoft.EntityFrameworkCore.SqlServer, Microsoft.EntityFrameworkCore.Tools, Microsoft.Extensions.Caching.Abstractions, Microsoft.Extensions.Caching.Memory, Microsoft.Extensions.Configuration, Microsoft.Extensions.Configuration.Abstractions, Microsoft.Extensions.Configuration.Binder, Microsoft.Extensions.Configuration.CommandLine, Microsoft.Extensions.Configuration.EnvironmentVariables, Microsoft.Extensions.Configuration.FileExtensions, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.Configuration.Json, Microsoft.Extensions.Configuration.UserSecrets, Microsoft.Extensions.Configuration.Xml, Microsoft.Extensions.DependencyInjection, Microsoft.Extensions.DependencyInjection.Abstractions, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.Diagnostics, Microsoft.Extensions.Diagnostics.Abstractions, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Composite, Microsoft.Extensions.FileProviders.Physical, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.HostFactoryResolver.Sources, Microsoft.Extensions.Hosting, Microsoft.Extensions.Hosting.Abstractions, Microsoft.Extensions.Http, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Configuration, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.Logging.Debug, Microsoft.Extensions.Logging.EventLog, Microsoft.Extensions.Logging.EventSource, Microsoft.Extensions.Logging.TraceSource, Microsoft.Extensions.Options, Microsoft.Extensions.Options.ConfigurationExtensions, Microsoft.Extensions.Options.DataAnnotations, Microsoft.Extensions.Primitives, Microsoft.Internal.Runtime.AspNetCore.Transport, Microsoft.NETCore.App.Ref, Microsoft.NETCore.Platforms, System.Collections.Immutable, System.Composition, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Diagnostics.EventLog, System.Diagnostics.PerformanceCounter, System.DirectoryServices.Protocols, System.Formats.Asn1, System.Formats.Cbor, System.IO.Hashing, System.IO.Pipelines, System.Memory.Data, System.Net.Http.Json, System.Net.Http.WinHttpHandler, System.Net.ServerSentEvents, System.Numerics.Tensors, System.Reflection.Metadata, System.Resources.Extensions, System.Runtime.Caching, System.Security.Cryptography.Pkcs, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encodings.Web, System.Text.Json, System.Threading.AccessControl, System.Threading.Channels, System.Threading.RateLimiting (Version 11.0.0-rc.1.26420.103 -> 11.0.0-rc.1.26420.118) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Archives, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Helix.JobMonitor, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.RemoteExecutor, Microsoft.DotNet.SharedFramework.Sdk (Version 11.0.0-beta.26420.103 -> 11.0.0-beta.26420.118) Microsoft.Web.Xdt (Version 3.3.0-rc.1.26420.103 -> 3.3.0-rc.1.26420.118) NuGet.Frameworks, NuGet.Packaging, NuGet.Versioning (Version 7.11.0-rc.42103 -> 7.11.0-rc.42118) [[ commit created by automation ]] --- .config/dotnet-tools.json | 4 +- eng/Version.Details.props | 188 +++++++++---------- eng/Version.Details.xml | 378 +++++++++++++++++++------------------- global.json | 10 +- 4 files changed, 290 insertions(+), 290 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 75db804b14d8..da1ddd42082c 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -9,7 +9,7 @@ ] }, "dotnet-ef": { - "version": "11.0.0-rc.1.26420.103", + "version": "11.0.0-rc.1.26420.118", "commands": [ "dotnet-ef" ] @@ -27,7 +27,7 @@ ] }, "microsoft.dotnet.helix.jobmonitor": { - "version": "11.0.0-beta.26420.103", + "version": "11.0.0-beta.26420.118", "commands": [ "dotnet-helix-job-monitor" ] diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 2061f1236801..58b34fd02af0 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,100 +6,100 @@ This file should be imported by eng/Versions.props - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-beta.26420.103 - 11.0.0-beta.26420.103 - 11.0.0-beta.26420.103 - 11.0.0-beta.26420.103 - 11.0.0-beta.26420.103 - 11.0.0-beta.26420.103 - 11.0.0-beta.26420.103 - 11.0.0-beta.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 3.3.0-rc.1.26420.103 - 7.11.0-rc.42103 - 7.11.0-rc.42103 - 7.11.0-rc.42103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 - 11.0.0-rc.1.26420.103 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-beta.26420.118 + 11.0.0-beta.26420.118 + 11.0.0-beta.26420.118 + 11.0.0-beta.26420.118 + 11.0.0-beta.26420.118 + 11.0.0-beta.26420.118 + 11.0.0-beta.26420.118 + 11.0.0-beta.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 3.3.0-rc.1.26420.118 + 7.11.0-rc.42118 + 7.11.0-rc.42118 + 7.11.0-rc.42118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26420.118 10.8.3 10.8.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4e315335018e..711adcd1bd81 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -8,333 +8,333 @@ See https://github.com/dotnet/arcade/blob/master/Documentation/Darc.md for instructions on using darc. --> - + - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 @@ -355,48 +355,48 @@ afdd413cee50c16318620252e4e64dc326e2d300 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 https://github.com/dotnet/extensions @@ -456,17 +456,17 @@ https://github.com/dotnet/msbuild d1cce8d7cc03c23a4f1bad8e9240714fd9d199a3 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 - + https://github.com/dotnet/dotnet - 1d599674e31ad86ca9e6e1dad7055b531e4d58e4 + 22586bf37ce87b3e0207e4297461fcce75bffc22 diff --git a/global.json b/global.json index 9a2186c48adc..d16795f3021f 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "11.0.100-preview.7.26381.103", + "version": "11.0.100-rc.1.26420.103", "paths": [ ".dotnet", "$host$" @@ -8,7 +8,7 @@ "errorMessage": "The .NET SDK could not be found, run ./restore.cmd or ./restore.sh first." }, "tools": { - "dotnet": "11.0.100-preview.7.26381.103", + "dotnet": "11.0.100-rc.1.26420.103", "runtimes": { "dotnet/x86": [ "$(MicrosoftInternalRuntimeAspNetCoreTransportVersion)" @@ -22,9 +22,9 @@ "jdk": "latest" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26420.103", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26420.103", - "Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26420.103", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26420.118", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26420.118", + "Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26420.118", "Microsoft.Build.NoTargets": "3.7.134", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "6.0.3-dotnet.6" From b66efab6b287751c823a18a83afeaf4576c23c64 Mon Sep 17 00:00:00 2001 From: William Godbe Date: Tue, 18 Aug 2026 09:54:43 -0700 Subject: [PATCH 4/8] Handle WarnAsError in the build script Consume the existing pipeline argument instead of forwarding it to MSBuild, where it conflicts with warnNotAsError. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- eng/build.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eng/build.ps1 b/eng/build.ps1 index 44bc9c3911fe..e8aa842880b7 100644 --- a/eng/build.ps1 +++ b/eng/build.ps1 @@ -208,6 +208,9 @@ param( # Intentionally lowercase as tools.ps1 depends on it [switch]$fromVMR, + # Passed through to tools.ps1 MSBuild function + [bool]$warnAsError = $true, + # Passed through to tools.ps1 MSBuild function [string]$warnNotAsError = '', From 197f1d5f32d81ecbe78ae2bbc70b8e5af7a5a655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Tue, 18 Aug 2026 20:26:10 +0200 Subject: [PATCH 5/8] Use recommended -warnaserror --- .azure/pipelines/ci-public.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure/pipelines/ci-public.yml b/.azure/pipelines/ci-public.yml index f9274cdf75c5..64c7b9344a62 100644 --- a/.azure/pipelines/ci-public.yml +++ b/.azure/pipelines/ci-public.yml @@ -668,7 +668,7 @@ stages: displayName: Update submodules - script: ./restore.cmd displayName: Run restore.cmd - - powershell: ./eng/build.ps1 -all -noBuildJava -noBuildNodeJS "-WarnAsError:false" + - powershell: ./eng/build.ps1 -all -noBuildJava -noBuildNodeJS -warnAsError 0 displayName: Build (No NodeJS) - script: npm run build displayName: Build JS From 92a872f417e07b4ced706ad7ea6bf2ec93e5bd36 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 21 Aug 2026 18:20:14 +0000 Subject: [PATCH 6/8] Update dependencies from build 328075 Updated Dependencies: Microsoft.NET.Runtime.WebAssembly.Sdk, Microsoft.NETCore.BrowserDebugHost.Transport, Microsoft.NET.Runtime.MonoAOTCompiler.Task, dotnet-ef, Microsoft.Bcl.AsyncInterfaces, Microsoft.Bcl.Cryptography, Microsoft.Bcl.TimeProvider, Microsoft.EntityFrameworkCore, Microsoft.EntityFrameworkCore.Design, Microsoft.EntityFrameworkCore.InMemory, Microsoft.EntityFrameworkCore.Relational, Microsoft.EntityFrameworkCore.Sqlite, Microsoft.EntityFrameworkCore.SqlServer, Microsoft.EntityFrameworkCore.Tools, Microsoft.Extensions.Caching.Abstractions, Microsoft.Extensions.Caching.Memory, Microsoft.Extensions.Configuration, Microsoft.Extensions.Configuration.Abstractions, Microsoft.Extensions.Configuration.Binder, Microsoft.Extensions.Configuration.CommandLine, Microsoft.Extensions.Configuration.EnvironmentVariables, Microsoft.Extensions.Configuration.FileExtensions, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.Configuration.Json, Microsoft.Extensions.Configuration.UserSecrets, Microsoft.Extensions.Configuration.Xml, Microsoft.Extensions.DependencyInjection, Microsoft.Extensions.DependencyInjection.Abstractions, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.Diagnostics, Microsoft.Extensions.Diagnostics.Abstractions, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Composite, Microsoft.Extensions.FileProviders.Physical, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.HostFactoryResolver.Sources, Microsoft.Extensions.Hosting, Microsoft.Extensions.Hosting.Abstractions, Microsoft.Extensions.Http, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Configuration, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.Logging.Debug, Microsoft.Extensions.Logging.EventLog, Microsoft.Extensions.Logging.EventSource, Microsoft.Extensions.Logging.TraceSource, Microsoft.Extensions.Options, Microsoft.Extensions.Options.ConfigurationExtensions, Microsoft.Extensions.Options.DataAnnotations, Microsoft.Extensions.Primitives, Microsoft.Internal.Runtime.AspNetCore.Transport, Microsoft.NETCore.App.Ref, Microsoft.NETCore.Platforms, System.Collections.Immutable, System.Composition, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Diagnostics.EventLog, System.Diagnostics.PerformanceCounter, System.DirectoryServices.Protocols, System.Formats.Asn1, System.Formats.Cbor, System.IO.Hashing, System.IO.Pipelines, System.Memory.Data, System.Net.Http.Json, System.Net.Http.WinHttpHandler, System.Net.ServerSentEvents, System.Numerics.Tensors, System.Reflection.Metadata, System.Resources.Extensions, System.Runtime.Caching, System.Security.Cryptography.Pkcs, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encodings.Web, System.Text.Json, System.Threading.AccessControl, System.Threading.Channels, System.Threading.RateLimiting (Version 11.0.0-rc.1.26420.118 -> 11.0.0-rc.1.26421.101) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Archives, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Helix.JobMonitor, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.RemoteExecutor, Microsoft.DotNet.SharedFramework.Sdk (Version 11.0.0-beta.26420.118 -> 11.0.0-beta.26421.101) Microsoft.Web.Xdt (Version 3.3.0-rc.1.26420.118 -> 3.3.0-rc.1.26421.101) NuGet.Frameworks, NuGet.Packaging, NuGet.Versioning (Version 7.11.0-rc.42118 -> 7.11.0-rc.42201) [[ commit created by automation ]] --- .config/dotnet-tools.json | 4 +- eng/Version.Details.props | 188 +++++++++---------- eng/Version.Details.xml | 378 +++++++++++++++++++------------------- global.json | 6 +- 4 files changed, 288 insertions(+), 288 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index da1ddd42082c..a30c3547599b 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -9,7 +9,7 @@ ] }, "dotnet-ef": { - "version": "11.0.0-rc.1.26420.118", + "version": "11.0.0-rc.1.26421.101", "commands": [ "dotnet-ef" ] @@ -27,7 +27,7 @@ ] }, "microsoft.dotnet.helix.jobmonitor": { - "version": "11.0.0-beta.26420.118", + "version": "11.0.0-beta.26421.101", "commands": [ "dotnet-helix-job-monitor" ] diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 58b34fd02af0..d5030653c307 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,100 +6,100 @@ This file should be imported by eng/Versions.props - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-beta.26420.118 - 11.0.0-beta.26420.118 - 11.0.0-beta.26420.118 - 11.0.0-beta.26420.118 - 11.0.0-beta.26420.118 - 11.0.0-beta.26420.118 - 11.0.0-beta.26420.118 - 11.0.0-beta.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 3.3.0-rc.1.26420.118 - 7.11.0-rc.42118 - 7.11.0-rc.42118 - 7.11.0-rc.42118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 - 11.0.0-rc.1.26420.118 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-beta.26421.101 + 11.0.0-beta.26421.101 + 11.0.0-beta.26421.101 + 11.0.0-beta.26421.101 + 11.0.0-beta.26421.101 + 11.0.0-beta.26421.101 + 11.0.0-beta.26421.101 + 11.0.0-beta.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 3.3.0-rc.1.26421.101 + 7.11.0-rc.42201 + 7.11.0-rc.42201 + 7.11.0-rc.42201 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.101 10.8.3 10.8.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 711adcd1bd81..4defee60a728 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -8,333 +8,333 @@ See https://github.com/dotnet/arcade/blob/master/Documentation/Darc.md for instructions on using darc. --> - + - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b @@ -355,48 +355,48 @@ afdd413cee50c16318620252e4e64dc326e2d300 - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b https://github.com/dotnet/extensions @@ -456,17 +456,17 @@ https://github.com/dotnet/msbuild d1cce8d7cc03c23a4f1bad8e9240714fd9d199a3 - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b - + https://github.com/dotnet/dotnet - 22586bf37ce87b3e0207e4297461fcce75bffc22 + 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b diff --git a/global.json b/global.json index d16795f3021f..5c790ca86902 100644 --- a/global.json +++ b/global.json @@ -22,9 +22,9 @@ "jdk": "latest" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26420.118", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26420.118", - "Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26420.118", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26421.101", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26421.101", + "Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26421.101", "Microsoft.Build.NoTargets": "3.7.134", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "6.0.3-dotnet.6" From c01d1d75072aa29dbe7bf1e116ab240f837e57b7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 22 Aug 2026 04:34:59 +0000 Subject: [PATCH 7/8] Update dependencies from build 328169 Updated Dependencies: Microsoft.NET.Runtime.WebAssembly.Sdk, Microsoft.NETCore.BrowserDebugHost.Transport, Microsoft.NET.Runtime.MonoAOTCompiler.Task, dotnet-ef, Microsoft.Bcl.AsyncInterfaces, Microsoft.Bcl.Cryptography, Microsoft.Bcl.TimeProvider, Microsoft.EntityFrameworkCore, Microsoft.EntityFrameworkCore.Design, Microsoft.EntityFrameworkCore.InMemory, Microsoft.EntityFrameworkCore.Relational, Microsoft.EntityFrameworkCore.Sqlite, Microsoft.EntityFrameworkCore.SqlServer, Microsoft.EntityFrameworkCore.Tools, Microsoft.Extensions.Caching.Abstractions, Microsoft.Extensions.Caching.Memory, Microsoft.Extensions.Configuration, Microsoft.Extensions.Configuration.Abstractions, Microsoft.Extensions.Configuration.Binder, Microsoft.Extensions.Configuration.CommandLine, Microsoft.Extensions.Configuration.EnvironmentVariables, Microsoft.Extensions.Configuration.FileExtensions, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.Configuration.Json, Microsoft.Extensions.Configuration.UserSecrets, Microsoft.Extensions.Configuration.Xml, Microsoft.Extensions.DependencyInjection, Microsoft.Extensions.DependencyInjection.Abstractions, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.Diagnostics, Microsoft.Extensions.Diagnostics.Abstractions, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Composite, Microsoft.Extensions.FileProviders.Physical, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.HostFactoryResolver.Sources, Microsoft.Extensions.Hosting, Microsoft.Extensions.Hosting.Abstractions, Microsoft.Extensions.Http, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Configuration, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.Logging.Debug, Microsoft.Extensions.Logging.EventLog, Microsoft.Extensions.Logging.EventSource, Microsoft.Extensions.Logging.TraceSource, Microsoft.Extensions.Options, Microsoft.Extensions.Options.ConfigurationExtensions, Microsoft.Extensions.Options.DataAnnotations, Microsoft.Extensions.Primitives, Microsoft.Internal.Runtime.AspNetCore.Transport, Microsoft.NETCore.App.Ref, Microsoft.NETCore.Platforms, System.Collections.Immutable, System.Composition, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Diagnostics.EventLog, System.Diagnostics.PerformanceCounter, System.DirectoryServices.Protocols, System.Formats.Asn1, System.Formats.Cbor, System.IO.Hashing, System.IO.Pipelines, System.Memory.Data, System.Net.Http.Json, System.Net.Http.WinHttpHandler, System.Net.ServerSentEvents, System.Numerics.Tensors, System.Reflection.Metadata, System.Resources.Extensions, System.Runtime.Caching, System.Security.Cryptography.Pkcs, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encodings.Web, System.Text.Json, System.Threading.AccessControl, System.Threading.Channels, System.Threading.RateLimiting (Version 11.0.0-rc.1.26421.101 -> 11.0.0-rc.1.26421.110) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Archives, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Helix.JobMonitor, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.RemoteExecutor, Microsoft.DotNet.SharedFramework.Sdk (Version 11.0.0-beta.26421.101 -> 11.0.0-beta.26421.110) Microsoft.Web.Xdt (Version 3.3.0-rc.1.26421.101 -> 3.3.0-rc.1.26421.110) NuGet.Frameworks, NuGet.Packaging, NuGet.Versioning (Version 7.11.0-rc.42201 -> 7.11.0-rc.42210) [[ commit created by automation ]] --- .config/dotnet-tools.json | 4 +- eng/Version.Details.props | 188 +++++++++---------- eng/Version.Details.xml | 378 +++++++++++++++++++------------------- global.json | 6 +- 4 files changed, 288 insertions(+), 288 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index a30c3547599b..7f6f4869cae4 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -9,7 +9,7 @@ ] }, "dotnet-ef": { - "version": "11.0.0-rc.1.26421.101", + "version": "11.0.0-rc.1.26421.110", "commands": [ "dotnet-ef" ] @@ -27,7 +27,7 @@ ] }, "microsoft.dotnet.helix.jobmonitor": { - "version": "11.0.0-beta.26421.101", + "version": "11.0.0-beta.26421.110", "commands": [ "dotnet-helix-job-monitor" ] diff --git a/eng/Version.Details.props b/eng/Version.Details.props index d5030653c307..8bfbd43e9ea0 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,100 +6,100 @@ This file should be imported by eng/Versions.props - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-beta.26421.101 - 11.0.0-beta.26421.101 - 11.0.0-beta.26421.101 - 11.0.0-beta.26421.101 - 11.0.0-beta.26421.101 - 11.0.0-beta.26421.101 - 11.0.0-beta.26421.101 - 11.0.0-beta.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 3.3.0-rc.1.26421.101 - 7.11.0-rc.42201 - 7.11.0-rc.42201 - 7.11.0-rc.42201 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 - 11.0.0-rc.1.26421.101 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-beta.26421.110 + 11.0.0-beta.26421.110 + 11.0.0-beta.26421.110 + 11.0.0-beta.26421.110 + 11.0.0-beta.26421.110 + 11.0.0-beta.26421.110 + 11.0.0-beta.26421.110 + 11.0.0-beta.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 3.3.0-rc.1.26421.110 + 7.11.0-rc.42210 + 7.11.0-rc.42210 + 7.11.0-rc.42210 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 + 11.0.0-rc.1.26421.110 10.8.3 10.8.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4defee60a728..4023d0c6c051 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -8,333 +8,333 @@ See https://github.com/dotnet/arcade/blob/master/Documentation/Darc.md for instructions on using darc. --> - + - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 @@ -355,48 +355,48 @@ afdd413cee50c16318620252e4e64dc326e2d300 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 https://github.com/dotnet/extensions @@ -456,17 +456,17 @@ https://github.com/dotnet/msbuild d1cce8d7cc03c23a4f1bad8e9240714fd9d199a3 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 - + https://github.com/dotnet/dotnet - 7cba5e99f9bb2a43fd0bd0dad345b3a21583eb7b + 25c0025e42e3857ccc7b946adff9fadea9fe35a4 diff --git a/global.json b/global.json index 5c790ca86902..aa0488cb9822 100644 --- a/global.json +++ b/global.json @@ -22,9 +22,9 @@ "jdk": "latest" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26421.101", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26421.101", - "Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26421.101", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26421.110", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26421.110", + "Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26421.110", "Microsoft.Build.NoTargets": "3.7.134", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "6.0.3-dotnet.6" From 56fcaf3d78a6546f96095cc8a5d03b0541827973 Mon Sep 17 00:00:00 2001 From: William Godbe Date: Mon, 24 Aug 2026 10:17:40 -0700 Subject: [PATCH 8/8] Fix OpenAPI tests with NativeAOT CLI Upgrade Microsoft.Build.Locator so SDK paths reported by the NativeAOT CLI are combined correctly. Suppress the locator assembly copy check for the existing NuGet.Frameworks reference. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- eng/Versions.props | 2 +- .../test/dotnet-microsoft.openapi.Tests.csproj | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 42b8d5fd82d5..f2948af2a6ed 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -106,7 +106,7 @@ 6.0.0 1.2.0 - 1.2.6 + 1.11.2