From 259b2c3d40c4413cc3913f57ac74e6c1beda268f Mon Sep 17 00:00:00 2001 From: Chet Husk Date: Mon, 7 Jul 2025 22:45:24 -0500 Subject: [PATCH 001/392] Update DockerRegistryManager.cs --- .../DockerRegistryManager.cs | 30 +++++++++++++++---- 1 file changed, 25 insertions(+), 5 deletions(-) diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs index 53954b10427b..e90f3f713a22 100644 --- a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs +++ b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs @@ -20,11 +20,31 @@ public class DockerRegistryManager public const string FullyQualifiedBaseImageAspNet = $"{BaseImageSource}/{AspNetBaseImage}:{Net8PreviewImageTag}"; private static string? s_registryContainerId; - public static void StartAndPopulateDockerRegistry(ITestOutputHelper testOutput) + private static string SDK_AzureContainerRegistryImage => "dotnetdhmirror-f8bzbjakh8cga6ab.azurecr.io/registry:2"; + private static string Docker_HubRegistryImage => "docker.io/library/registry:2"; + + // TODO: some logic to pivot between this and Docker Hub + private static string RegistryImageToUse => SDK_AzureContainerRegistryImage; + + internal class SameArchManifestPicker : IManifestPicker + { + public PlatformSpecificManifest? PickBestManifestForRid(IReadOnlyDictionary manifestList, string runtimeIdentifier) + { + return manifestList.Values.SingleOrDefault(m => m.platform.os == "linux" && m.platform.architecture == "amd64"); + } + + public PlatformSpecificOciManifest? PickBestManifestForRid(IReadOnlyDictionary manifestList, string runtimeIdentifier) + { + return manifestList.Values.SingleOrDefault(m => m.platform.os == "linux" && m.platform.architecture == "amd64"); + } + } + + public static async Task StartAndPopulateDockerRegistry(ITestOutputHelper testOutput) { using TestLoggerFactory loggerFactory = new(testOutput); - if (!new DockerCli(loggerFactory).IsAvailable()) { + if (!new DockerCli(loggerFactory).IsAvailable()) + { throw new InvalidOperationException("Docker is not available, tests cannot run"); } @@ -40,7 +60,7 @@ public static void StartAndPopulateDockerRegistry(ITestOutputHelper testOutput) { logger.LogInformation("Spawning local registry at '{registry}', attempt #{attempt}.", LocalRegistry, spawnRegistryAttempt); - CommandResult processResult = ContainerCli.RunCommand(testOutput, "--rm", "--publish", "5010:5000", "--detach", "docker.io/library/registry:2").Execute(); + CommandResult processResult = ContainerCli.RunCommand(testOutput, "--rm", "--publish", "5010:5000", "--detach", RegistryImageToUse).Execute(); processResult.Should().Pass().And.HaveStdOut(); @@ -59,7 +79,7 @@ public static void StartAndPopulateDockerRegistry(ITestOutputHelper testOutput) .Execute() .Should().Pass(); - logger.LogInformation("Tagging image '{sourceRepo}/{sourceImage}:{sourceTag}' as '{targetRepo}/{targetImage}:{targetTag}'.",BaseImageSource, RuntimeBaseImage, tag, LocalRegistry, RuntimeBaseImage, tag); + logger.LogInformation("Tagging image '{sourceRepo}/{sourceImage}:{sourceTag}' as '{targetRepo}/{targetImage}:{targetTag}'.", BaseImageSource, RuntimeBaseImage, tag, LocalRegistry, RuntimeBaseImage, tag); ContainerCli.TagCommand(testOutput, $"{BaseImageSource}/{RuntimeBaseImage}:{tag}", $"{LocalRegistry}/{RuntimeBaseImage}:{tag}") .Execute() .Should().Pass(); @@ -84,7 +104,7 @@ public static void StartAndPopulateDockerRegistry(ITestOutputHelper testOutput) { ContainerCli.StopCommand(testOutput, s_registryContainerId).Execute(); } - catch(Exception ex2) + catch (Exception ex2) { logger.LogError(ex2, "Failed to stop the registry {id}.", s_registryContainerId); } From acb7df6756d6ea1d304cc0e9ec78c45593c9598d Mon Sep 17 00:00:00 2001 From: Noah Gilson Date: Tue, 8 Jul 2025 10:54:54 -0700 Subject: [PATCH 002/392] Fix Containers Issue in 8.0.1xx Co-authored-by: Chet Husk --- .../DockerRegistryManager.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs index e90f3f713a22..bceb7393c5bd 100644 --- a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs +++ b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs @@ -26,18 +26,6 @@ public class DockerRegistryManager // TODO: some logic to pivot between this and Docker Hub private static string RegistryImageToUse => SDK_AzureContainerRegistryImage; - internal class SameArchManifestPicker : IManifestPicker - { - public PlatformSpecificManifest? PickBestManifestForRid(IReadOnlyDictionary manifestList, string runtimeIdentifier) - { - return manifestList.Values.SingleOrDefault(m => m.platform.os == "linux" && m.platform.architecture == "amd64"); - } - - public PlatformSpecificOciManifest? PickBestManifestForRid(IReadOnlyDictionary manifestList, string runtimeIdentifier) - { - return manifestList.Values.SingleOrDefault(m => m.platform.os == "linux" && m.platform.architecture == "amd64"); - } - } public static async Task StartAndPopulateDockerRegistry(ITestOutputHelper testOutput) { From 79417617de66610d27cb21f05ae8f8430a024bfd Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 8 Aug 2025 02:02:36 +0000 Subject: [PATCH 003/392] Update dependencies from https://github.com/dotnet/arcade build 20250807.1 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25378.1 -> To Version 8.0.0-beta.25407.1 --- NuGet.config | 14 ++++++++++++++ eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 6 +++--- 4 files changed, 27 insertions(+), 13 deletions(-) diff --git a/NuGet.config b/NuGet.config index b9c67abe035f..6b004e87a3df 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,6 +4,8 @@ + + @@ -15,6 +17,8 @@ + + @@ -23,12 +27,16 @@ + + + + @@ -53,6 +61,8 @@ + + @@ -61,9 +71,13 @@ + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 53d8ed24e33e..8e5ad4da66c6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 8dca4f8ae100b102230287f8cc1b75264c9f1a6f + a5ec3fab69ac440afe6764b2e046af6e8fcafa74 - + https://github.com/dotnet/arcade - 8dca4f8ae100b102230287f8cc1b75264c9f1a6f + a5ec3fab69ac440afe6764b2e046af6e8fcafa74 - + https://github.com/dotnet/arcade - 8dca4f8ae100b102230287f8cc1b75264c9f1a6f + a5ec3fab69ac440afe6764b2e046af6e8fcafa74 - + https://github.com/dotnet/arcade - 8dca4f8ae100b102230287f8cc1b75264c9f1a6f + a5ec3fab69ac440afe6764b2e046af6e8fcafa74 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index b36edf5db0cb..e7df456f50e6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25378.1 + 8.0.0-beta.25407.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -211,7 +211,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25378.1 + 8.0.0-beta.25407.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 2c2724864523..24482931e6f1 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "tools": { - "dotnet": "8.0.117", + "dotnet": "8.0.119", "runtimes": { "dotnet": [ "$(VSRedistCommonNetCoreSharedFrameworkx6480PackageVersion)" @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25378.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25378.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25407.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25407.1" } } From 69a2f5a73165b974e400abf69357da3dfd48791a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 8 Aug 2025 03:43:31 +0000 Subject: [PATCH 004/392] Update dependencies from https://github.com/dotnet/templating build 20250807.2 Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks From Version 8.0.120-servicing.25404.9 -> To Version 8.0.120-servicing.25407.2 --- NuGet.config | 16 +++++++++++++++- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 21 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index b9c67abe035f..dbc742c261fa 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,6 +4,8 @@ + + @@ -15,6 +17,8 @@ + + @@ -23,12 +27,16 @@ + + - + + + @@ -53,6 +61,8 @@ + + @@ -61,9 +71,13 @@ + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 53d8ed24e33e..0b3046038deb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 855483d28bd60fcb6e1f1f155828e8da8a46dee7 + 34e844f17facdfbdeaa0d9ae40ef792d19b3775b - + https://github.com/dotnet/templating - 855483d28bd60fcb6e1f1f155828e8da8a46dee7 + 34e844f17facdfbdeaa0d9ae40ef792d19b3775b - + https://github.com/dotnet/templating - 855483d28bd60fcb6e1f1f155828e8da8a46dee7 + 34e844f17facdfbdeaa0d9ae40ef792d19b3775b diff --git a/eng/Versions.props b/eng/Versions.props index b36edf5db0cb..8a1ef1ef5815 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -145,7 +145,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.120-servicing.25404.9 + 8.0.120-servicing.25407.2 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From e2e94c570452a60979b21d17125fc0ad44762b01 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 11 Aug 2025 10:26:04 +0000 Subject: [PATCH 005/392] Update dependencies from https://github.com/dotnet/msbuild build 20250811.3 Microsoft.SourceBuild.Intermediate.msbuild , Microsoft.Build , Microsoft.Build.Localization From Version 17.8.35-servicing-25407-06 -> To Version 17.8.36-servicing-25411-03 --- NuGet.config | 24 +----------------------- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 9 insertions(+), 31 deletions(-) diff --git a/NuGet.config b/NuGet.config index dbc742c261fa..e53239df2169 100644 --- a/NuGet.config +++ b/NuGet.config @@ -3,10 +3,6 @@ - - - - @@ -16,27 +12,18 @@ - - - - + - - - - - - @@ -61,9 +48,6 @@ - - - @@ -71,14 +55,8 @@ - - - - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c98d20f3115c..410bc488bc91 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -55,17 +55,17 @@ https://github.com/dotnet/emsdk 6fd14a46f7bc405f4ba53b1e691c76fdc6324b0b - + https://github.com/dotnet/msbuild - fe4b4c2c710f9ffdc4db980d1a2a4cb62fdd3c67 + 03e28d165c0959ee43aa91c2612776b011522a70 - + https://github.com/dotnet/msbuild - fe4b4c2c710f9ffdc4db980d1a2a4cb62fdd3c67 + 03e28d165c0959ee43aa91c2612776b011522a70 - + https://github.com/dotnet/msbuild - fe4b4c2c710f9ffdc4db980d1a2a4cb62fdd3c67 + 03e28d165c0959ee43aa91c2612776b011522a70 diff --git a/eng/Versions.props b/eng/Versions.props index 631aa1cad5c4..2caa7924940a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -123,7 +123,7 @@ - 17.8.35 + 17.8.36 $(MicrosoftBuildPackageVersion) - - - - @@ -16,9 +12,6 @@ - - - @@ -26,17 +19,12 @@ - - - + - - - @@ -61,9 +49,6 @@ - - - @@ -71,14 +56,9 @@ - - - + - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c98d20f3115c..6278a52deb2b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -14,42 +14,42 @@ 34e844f17facdfbdeaa0d9ae40ef792d19b3775b - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fce8ed90dc43047eabec2b32c04ee46b789ad5d1 + 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fce8ed90dc43047eabec2b32c04ee46b789ad5d1 + 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fce8ed90dc43047eabec2b32c04ee46b789ad5d1 + 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fce8ed90dc43047eabec2b32c04ee46b789ad5d1 + 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fce8ed90dc43047eabec2b32c04ee46b789ad5d1 + 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fce8ed90dc43047eabec2b32c04ee46b789ad5d1 + 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fce8ed90dc43047eabec2b32c04ee46b789ad5d1 + 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fce8ed90dc43047eabec2b32c04ee46b789ad5d1 + 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f https://github.com/dotnet/emsdk @@ -200,9 +200,9 @@ https://github.com/microsoft/vstest aa59400b11e1aeee2e8af48928dbd48748a8bef9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fce8ed90dc43047eabec2b32c04ee46b789ad5d1 + 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 631aa1cad5c4..5003be416a2a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,18 +49,18 @@ - 8.0.19 - 8.0.19-servicing.25365.14 - 8.0.19 + 8.0.20 + 8.0.20-servicing.25412.10 + 8.0.20 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 - 8.0.19 - 8.0.19-servicing.25365.14 + 8.0.20 + 8.0.20-servicing.25412.10 8.0.0 8.0.1 8.0.3 8.0.1 - 8.0.19 + 8.0.20 8.0.0 8.0.0 8.0.19 From aa28ca0edb4e60fed144a49de2e513ca191ac1b9 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 13 Aug 2025 18:50:10 +0000 Subject: [PATCH 007/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250813.2 Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 , VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.19 -> To Version 8.0.20 Dependency coherency updates Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.19-servicing.25368.11 -> To Version 8.0.20-servicing.25413.5 (parent: Microsoft.WindowsDesktop.App.Ref --- NuGet.config | 2 ++ eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 2 +- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index cf8416c90010..20f48f6c821a 100644 --- a/NuGet.config +++ b/NuGet.config @@ -25,6 +25,7 @@ + @@ -59,6 +60,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6278a52deb2b..d37d5845919e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -228,25 +228,25 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 5fa74c83c4592ebe947aa4ca5302db1ffbb1dd4c + c0b240c049009c7056ade8a451821fbb9bfe3cd9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 5fa74c83c4592ebe947aa4ca5302db1ffbb1dd4c + c0b240c049009c7056ade8a451821fbb9bfe3cd9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 5fa74c83c4592ebe947aa4ca5302db1ffbb1dd4c + c0b240c049009c7056ade8a451821fbb9bfe3cd9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 5fa74c83c4592ebe947aa4ca5302db1ffbb1dd4c + c0b240c049009c7056ade8a451821fbb9bfe3cd9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 43d1a9a5f6207405244e36ac6a2950c8050442f8 + 2d7eca6fab93a8568ab489034f975d937502322a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 5003be416a2a..f185dabf08c2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -183,7 +183,7 @@ - 8.0.19-servicing.25368.11 + 8.0.20-servicing.25413.5 From 8677a2c6c93f1689fe928c937347d1705be219b5 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 13 Aug 2025 19:13:29 +0000 Subject: [PATCH 008/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250813.2 dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.19-servicing.25372.4 -> To Version 8.0.20-servicing.25413.2 --- NuGet.config | 2 ++ eng/Version.Details.xml | 72 ++++++++++++++++++++--------------------- eng/Versions.props | 16 ++++----- 3 files changed, 46 insertions(+), 44 deletions(-) diff --git a/NuGet.config b/NuGet.config index 20f48f6c821a..5d5db8c0c2ed 100644 --- a/NuGet.config +++ b/NuGet.config @@ -12,6 +12,7 @@ + @@ -50,6 +51,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d37d5845919e..cbe61ef2e429 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -248,50 +248,50 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-wpf 2d7eca6fab93a8568ab489034f975d937502322a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c https://github.com/dotnet/razor @@ -306,21 +306,21 @@ https://github.com/dotnet/razor 4c8bb4ff79523da1aa8ffbf2834ede5118f73d60 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c https://github.com/dotnet/xdt @@ -437,9 +437,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 277e317dd5cab9859ceea4c8ebae218522c2c173 + f654ff210c47a5b2288916c219c21fde07661c8c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index f185dabf08c2..654ef0935cb7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -63,7 +63,7 @@ 8.0.20 8.0.0 8.0.0 - 8.0.19 + 8.0.20 8.0.0 8.0.0 8.0.0 @@ -167,13 +167,13 @@ - 8.0.19 - 8.0.19-servicing.25372.4 - 8.0.19-servicing.25372.4 - 8.0.19-servicing.25372.4 - 8.0.19-servicing.25372.4 - 8.0.19-servicing.25372.4 - 8.0.19 + 8.0.20 + 8.0.20-servicing.25413.2 + 8.0.20-servicing.25413.2 + 8.0.20-servicing.25413.2 + 8.0.20-servicing.25413.2 + 8.0.20-servicing.25413.2 + 8.0.20 From daeae217d69226de42b272c13ae928209d71f021 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 15 Aug 2025 02:02:35 +0000 Subject: [PATCH 009/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20250814.2 Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25316.2 -> To Version 8.0.0-alpha.1.25414.2 --- NuGet.config | 22 ---------------------- eng/Version.Details.xml | 4 ++-- 2 files changed, 2 insertions(+), 24 deletions(-) diff --git a/NuGet.config b/NuGet.config index dbc742c261fa..bc8fc4121a0a 100644 --- a/NuGet.config +++ b/NuGet.config @@ -3,10 +3,6 @@ - - - - @@ -16,9 +12,6 @@ - - - @@ -26,17 +19,11 @@ - - - - - - @@ -61,9 +48,6 @@ - - - @@ -71,14 +55,8 @@ - - - - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c98d20f3115c..eca8cbbd4a8d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - 3827e68e002064268d4be4b2d1d96048f9794808 + 4f43a405d713b6e9b2963ebbac4850eae1804982 From ac9f2eeefc25d7e247f15fc8f445f36d7a9b0dd2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 15 Aug 2025 04:34:32 +0000 Subject: [PATCH 010/392] Update dependencies from https://github.com/dotnet/templating build 20250814.2 Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks From Version 8.0.120-servicing.25407.2 -> To Version 8.0.120-servicing.25414.2 --- NuGet.config | 24 +----------------------- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 29 deletions(-) diff --git a/NuGet.config b/NuGet.config index dbc742c261fa..3e3a6255cdb4 100644 --- a/NuGet.config +++ b/NuGet.config @@ -3,10 +3,6 @@ - - - - @@ -16,9 +12,6 @@ - - - @@ -26,17 +19,11 @@ - - - - + - - - @@ -61,9 +48,6 @@ - - - @@ -71,14 +55,8 @@ - - - - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c98d20f3115c..e3af21dbfe3b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 34e844f17facdfbdeaa0d9ae40ef792d19b3775b + d4ad9a875faeccf90774d5130c3cf6048738c15d - + https://github.com/dotnet/templating - 34e844f17facdfbdeaa0d9ae40ef792d19b3775b + d4ad9a875faeccf90774d5130c3cf6048738c15d - + https://github.com/dotnet/templating - 34e844f17facdfbdeaa0d9ae40ef792d19b3775b + d4ad9a875faeccf90774d5130c3cf6048738c15d diff --git a/eng/Versions.props b/eng/Versions.props index 631aa1cad5c4..186cb6060209 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -145,7 +145,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.120-servicing.25407.2 + 8.0.120-servicing.25414.2 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 41d237dbb4158806512eba8aa03461fa7519ddd0 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 15 Aug 2025 23:05:05 +0000 Subject: [PATCH 011/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250815.11 Microsoft.NET.HostModel , Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.20-servicing.25412.10 -> To Version 8.0.20-servicing.25415.11 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 5d5db8c0c2ed..1ada2fb67258 100644 --- a/NuGet.config +++ b/NuGet.config @@ -20,7 +20,7 @@ - + @@ -59,7 +59,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cbe61ef2e429..ccf5f97dc40c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f + dd6010a8a425962e7793cc741e1f79f8681e4882 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f + dd6010a8a425962e7793cc741e1f79f8681e4882 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f + dd6010a8a425962e7793cc741e1f79f8681e4882 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f + dd6010a8a425962e7793cc741e1f79f8681e4882 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f + dd6010a8a425962e7793cc741e1f79f8681e4882 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f + dd6010a8a425962e7793cc741e1f79f8681e4882 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f + dd6010a8a425962e7793cc741e1f79f8681e4882 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f + dd6010a8a425962e7793cc741e1f79f8681e4882 https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f + dd6010a8a425962e7793cc741e1f79f8681e4882 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 654ef0935cb7..cecba97f01f0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.20 - 8.0.20-servicing.25412.10 + 8.0.20-servicing.25415.11 8.0.20 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.20 - 8.0.20-servicing.25412.10 + 8.0.20-servicing.25415.11 8.0.0 8.0.1 8.0.3 From de1f3d9b9a0eeec4d069f5f5c9e992aba8d77d2b Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 16 Aug 2025 01:53:50 +0000 Subject: [PATCH 012/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250815.15 dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.20-servicing.25413.2 -> To Version 8.0.20-servicing.25415.15 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 1ada2fb67258..4a1155d0d453 100644 --- a/NuGet.config +++ b/NuGet.config @@ -12,7 +12,7 @@ - + @@ -51,7 +51,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ccf5f97dc40c..443c5f3b5c86 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - f654ff210c47a5b2288916c219c21fde07661c8c + cea0b1a66f968b2ab1c992ad86376fe74b82a566 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index cecba97f01f0..26043217f590 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -168,11 +168,11 @@ 8.0.20 - 8.0.20-servicing.25413.2 - 8.0.20-servicing.25413.2 - 8.0.20-servicing.25413.2 - 8.0.20-servicing.25413.2 - 8.0.20-servicing.25413.2 + 8.0.20-servicing.25415.15 + 8.0.20-servicing.25415.15 + 8.0.20-servicing.25415.15 + 8.0.20-servicing.25415.15 + 8.0.20-servicing.25415.15 8.0.20 From d227d012a0a0af8a2ac755201e04cc229e4588bc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 16 Aug 2025 02:03:00 +0000 Subject: [PATCH 013/392] Update dependencies from https://github.com/dotnet/arcade build 20250815.2 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25407.1 -> To Version 8.0.0-beta.25415.2 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- eng/common/SetupNugetSources.ps1 | 4 ++-- eng/common/SetupNugetSources.sh | 4 ++-- eng/common/templates-official/job/job.yml | 12 ++++++------ .../templates-official/job/onelocbuild.yml | 6 +++--- .../job/publish-build-assets.yml | 13 +++++++++---- .../job/source-index-stage1.yml | 2 +- .../templates-official/jobs/codeql-build.yml | 2 +- eng/common/templates-official/jobs/jobs.yml | 2 ++ .../templates-official/post-build/post-build.yml | 8 ++++---- .../post-build/trigger-subscription.yml | 2 +- .../steps/add-build-to-channel.yml | 2 +- .../templates-official/steps/execute-sdl.yml | 14 +++++++------- .../templates-official/steps/generate-sbom.yml | 2 +- .../templates-official/steps/publish-logs.yml | 6 +++--- .../templates-official/steps/source-build.yml | 8 ++++---- .../variables/sdl-variables.yml | 2 +- eng/common/templates/job/job.yml | 12 ++++++------ eng/common/templates/job/onelocbuild.yml | 6 +++--- .../templates/job/publish-build-assets.yml | 13 +++++++++---- eng/common/templates/job/source-index-stage1.yml | 2 +- eng/common/templates/jobs/codeql-build.yml | 2 +- eng/common/templates/jobs/jobs.yml | 2 ++ eng/common/templates/post-build/post-build.yml | 8 ++++---- .../templates/post-build/setup-maestro-vars.yml | 2 +- .../post-build/trigger-subscription.yml | 2 +- .../templates/steps/add-build-to-channel.yml | 2 +- eng/common/templates/steps/execute-sdl.yml | 14 +++++++------- eng/common/templates/steps/generate-sbom.yml | 2 +- eng/common/templates/steps/publish-logs.yml | 6 +++--- eng/common/templates/steps/source-build.yml | 8 ++++---- eng/common/templates/variables/sdl-variables.yml | 2 +- global.json | 4 ++-- 34 files changed, 105 insertions(+), 91 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 410bc488bc91..c12629758a6a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - a5ec3fab69ac440afe6764b2e046af6e8fcafa74 + 2f70e458e03e348a3a1f3fd6b9b70b4fcd5ba596 - + https://github.com/dotnet/arcade - a5ec3fab69ac440afe6764b2e046af6e8fcafa74 + 2f70e458e03e348a3a1f3fd6b9b70b4fcd5ba596 - + https://github.com/dotnet/arcade - a5ec3fab69ac440afe6764b2e046af6e8fcafa74 + 2f70e458e03e348a3a1f3fd6b9b70b4fcd5ba596 - + https://github.com/dotnet/arcade - a5ec3fab69ac440afe6764b2e046af6e8fcafa74 + 2f70e458e03e348a3a1f3fd6b9b70b4fcd5ba596 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 2caa7924940a..c4cbae65d3e9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25407.1 + 8.0.0-beta.25415.2 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -211,7 +211,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25407.1 + 8.0.0-beta.25415.2 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/SetupNugetSources.ps1 b/eng/common/SetupNugetSources.ps1 index efa2fd72bfaa..59b2d55e1a33 100644 --- a/eng/common/SetupNugetSources.ps1 +++ b/eng/common/SetupNugetSources.ps1 @@ -17,8 +17,8 @@ # displayName: Setup Private Feeds Credentials # condition: eq(variables['Agent.OS'], 'Windows_NT') # inputs: -# filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.ps1 -# arguments: -ConfigFile $(Build.SourcesDirectory)/NuGet.config -Password $Env:Token +# filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.ps1 +# arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config -Password $Env:Token # env: # Token: $(dn-bot-dnceng-artifact-feeds-rw) diff --git a/eng/common/SetupNugetSources.sh b/eng/common/SetupNugetSources.sh index d387c7eac95e..c0e7bbef21c4 100644 --- a/eng/common/SetupNugetSources.sh +++ b/eng/common/SetupNugetSources.sh @@ -18,8 +18,8 @@ # - task: Bash@3 # displayName: Setup Private Feeds Credentials # inputs: -# filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh -# arguments: $(Build.SourcesDirectory)/NuGet.config $Token +# filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh +# arguments: $(System.DefaultWorkingDirectory)/NuGet.config $Token # condition: ne(variables['Agent.OS'], 'Windows_NT') # env: # Token: $(dn-bot-dnceng-artifact-feeds-rw) diff --git a/eng/common/templates-official/job/job.yml b/eng/common/templates-official/job/job.yml index b98f6a6505d3..4cca1114fcca 100644 --- a/eng/common/templates-official/job/job.yml +++ b/eng/common/templates-official/job/job.yml @@ -38,7 +38,7 @@ parameters: # Sbom related params enableSbom: true PackageVersion: 7.0.0 - BuildDropPath: '$(Build.SourcesDirectory)/artifacts' + BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom jobs: @@ -167,7 +167,7 @@ jobs: inputs: languages: ${{ coalesce(parameters.richCodeNavigationLanguage, 'csharp') }} environment: ${{ coalesce(parameters.richCodeNavigationEnvironment, 'production') }} - richNavLogOutputDirectory: $(Build.SourcesDirectory)/artifacts/bin + richNavLogOutputDirectory: $(System.DefaultWorkingDirectory)/artifacts/bin uploadRichNavArtifacts: ${{ coalesce(parameters.richCodeNavigationUploadArtifacts, false) }} continueOnError: true @@ -226,7 +226,7 @@ jobs: - task: 1ES.PublishBuildArtifacts@1 displayName: Publish Logs inputs: - PathtoPublish: '$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)' + PathtoPublish: '$(System.DefaultWorkingDirectory)/artifacts/log/$(_BuildConfig)' PublishLocation: Container ArtifactName: ${{ coalesce(parameters.enablePublishBuildArtifacts.artifactName, '$(Agent.Os)_$(Agent.JobName)' ) }} continueOnError: true @@ -238,7 +238,7 @@ jobs: inputs: testResultsFormat: 'xUnit' testResultsFiles: '*.xml' - searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)' + searchFolder: '$(System.DefaultWorkingDirectory)/artifacts/TestResults/$(_BuildConfig)' testRunTitle: ${{ coalesce(parameters.testRunTitle, parameters.name, '$(System.JobName)') }}-xunit mergeTestResults: ${{ parameters.mergeTestResults }} continueOnError: true @@ -249,7 +249,7 @@ jobs: inputs: testResultsFormat: 'VSTest' testResultsFiles: '*.trx' - searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)' + searchFolder: '$(System.DefaultWorkingDirectory)/artifacts/TestResults/$(_BuildConfig)' testRunTitle: ${{ coalesce(parameters.testRunTitle, parameters.name, '$(System.JobName)') }}-trx mergeTestResults: ${{ parameters.mergeTestResults }} continueOnError: true @@ -265,7 +265,7 @@ jobs: - ${{ if eq(parameters.enableBuildRetry, 'true') }}: - task: 1ES.PublishPipelineArtifact@1 inputs: - targetPath: '$(Build.SourcesDirectory)\eng\common\BuildConfiguration' + targetPath: '$(System.DefaultWorkingDirectory)\eng\common\BuildConfiguration' artifactName: 'BuildConfiguration' displayName: 'Publish build retry configuration' continueOnError: true diff --git a/eng/common/templates-official/job/onelocbuild.yml b/eng/common/templates-official/job/onelocbuild.yml index 52b4d05d3f8d..68e7a65605c5 100644 --- a/eng/common/templates-official/job/onelocbuild.yml +++ b/eng/common/templates-official/job/onelocbuild.yml @@ -8,7 +8,7 @@ parameters: CeapexPat: $(dn-bot-ceapex-package-r) # PAT for the loc AzDO instance https://dev.azure.com/ceapex GithubPat: $(BotAccount-dotnet-bot-repo-PAT) - SourcesDirectory: $(Build.SourcesDirectory) + SourcesDirectory: $(System.DefaultWorkingDirectory) CreatePr: true AutoCompletePr: false ReusePr: true @@ -63,7 +63,7 @@ jobs: - ${{ if ne(parameters.SkipLocProjectJsonGeneration, 'true') }}: - task: Powershell@2 inputs: - filePath: $(Build.SourcesDirectory)/eng/common/generate-locproject.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/generate-locproject.ps1 arguments: $(_GenerateLocProjectArguments) displayName: Generate LocProject.json condition: ${{ parameters.condition }} @@ -106,7 +106,7 @@ jobs: - task: 1ES.PublishBuildArtifacts@1 displayName: Publish LocProject.json inputs: - PathtoPublish: '$(Build.SourcesDirectory)/eng/Localize/' + PathtoPublish: '$(System.DefaultWorkingDirectory)/eng/Localize/' PublishLocation: Container ArtifactName: Loc condition: ${{ parameters.condition }} \ No newline at end of file diff --git a/eng/common/templates-official/job/publish-build-assets.yml b/eng/common/templates-official/job/publish-build-assets.yml index b2ccd9df6801..7a320e9bab20 100644 --- a/eng/common/templates-official/job/publish-build-assets.yml +++ b/eng/common/templates-official/job/publish-build-assets.yml @@ -30,6 +30,8 @@ parameters: signingValidationAdditionalParameters: '' + repositoryAlias: self + jobs: - job: Asset_Registry_Publish @@ -65,6 +67,9 @@ jobs: os: windows steps: - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - checkout: ${{ parameters.repositoryAlias }} + fetchDepth: 3 + clean: true - task: DownloadBuildArtifacts@0 displayName: Download artifact inputs: @@ -82,7 +87,7 @@ jobs: azureSubscription: "Darc: Maestro Production" scriptType: ps scriptLocation: scriptPath - scriptPath: $(Build.SourcesDirectory)/eng/common/sdk-task.ps1 + scriptPath: $(System.DefaultWorkingDirectory)/eng/common/sdk-task.ps1 arguments: > -task PublishBuildAssets -restore -msbuildEngine dotnet /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' @@ -115,7 +120,7 @@ jobs: inputs: targetType: inline script: | - $symbolExclusionfile = "$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt" + $symbolExclusionfile = "$(System.DefaultWorkingDirectory)/eng/SymbolPublishingExclusionsFile.txt" if(Test-Path -Path $symbolExclusionfile) { Write-Host "SymbolExclusionFile exists" @@ -130,7 +135,7 @@ jobs: displayName: Publish SymbolPublishingExclusionsFile Artifact condition: eq(variables['SymbolExclusionFile'], 'true') inputs: - PathtoPublish: '$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt' + PathtoPublish: '$(System.DefaultWorkingDirectory)/eng/SymbolPublishingExclusionsFile.txt' PublishLocation: Container ArtifactName: ReleaseConfigs @@ -146,7 +151,7 @@ jobs: azureSubscription: "Darc: Maestro Production" scriptType: ps scriptLocation: scriptPath - scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + scriptPath: $(System.DefaultWorkingDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion 3 -AzdoToken '$(System.AccessToken)' diff --git a/eng/common/templates-official/job/source-index-stage1.yml b/eng/common/templates-official/job/source-index-stage1.yml index fb632b71a250..0579e692fc81 100644 --- a/eng/common/templates-official/job/source-index-stage1.yml +++ b/eng/common/templates-official/job/source-index-stage1.yml @@ -59,7 +59,7 @@ jobs: - script: ${{ parameters.sourceIndexBuildCommand }} displayName: Build Repository - - script: $(Agent.TempDirectory)/.source-index/tools/BinLogToSln -i $(BinlogPath) -r $(Build.SourcesDirectory) -n $(Build.Repository.Name) -o .source-index/stage1output + - script: $(Agent.TempDirectory)/.source-index/tools/BinLogToSln -i $(BinlogPath) -r $(System.DefaultWorkingDirectory) -n $(Build.Repository.Name) -o .source-index/stage1output displayName: Process Binlog into indexable sln - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: diff --git a/eng/common/templates-official/jobs/codeql-build.yml b/eng/common/templates-official/jobs/codeql-build.yml index b68d3c2f3199..f6476912a861 100644 --- a/eng/common/templates-official/jobs/codeql-build.yml +++ b/eng/common/templates-official/jobs/codeql-build.yml @@ -23,7 +23,7 @@ jobs: - name: DefaultGuardianVersion value: 0.109.0 - name: GuardianPackagesConfigFile - value: $(Build.SourcesDirectory)\eng\common\sdl\packages.config + value: $(System.DefaultWorkingDirectory)\eng\common\sdl\packages.config - name: GuardianVersion value: ${{ coalesce(parameters.overrideGuardianVersion, '$(DefaultGuardianVersion)') }} diff --git a/eng/common/templates-official/jobs/jobs.yml b/eng/common/templates-official/jobs/jobs.yml index 857a0f8ba43e..803a95aacf4e 100644 --- a/eng/common/templates-official/jobs/jobs.yml +++ b/eng/common/templates-official/jobs/jobs.yml @@ -40,6 +40,7 @@ parameters: enableSourceIndex: false sourceIndexParams: {} + repositoryAlias: self # Internal resources (telemetry, microbuild) can only be accessed from non-public projects, # and some (Microbuild) should only be applied to non-PR cases for internal builds. @@ -95,3 +96,4 @@ jobs: enablePublishBuildArtifacts: ${{ parameters.enablePublishBuildArtifacts }} artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} signingValidationAdditionalParameters: ${{ parameters.signingValidationAdditionalParameters }} + repositoryAlias: ${{ parameters.repositoryAlias }} diff --git a/eng/common/templates-official/post-build/post-build.yml b/eng/common/templates-official/post-build/post-build.yml index b81b8770b346..9fef8103991c 100644 --- a/eng/common/templates-official/post-build/post-build.yml +++ b/eng/common/templates-official/post-build/post-build.yml @@ -133,7 +133,7 @@ stages: - task: PowerShell@2 displayName: Validate inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/nuget-validation.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/nuget-validation.ps1 arguments: -PackagesPath $(Build.ArtifactStagingDirectory)/PackageArtifacts/ -ToolDestinationPath $(Agent.BuildDirectory)/Extract/ @@ -186,7 +186,7 @@ stages: filePath: eng\common\sdk-task.ps1 arguments: -task SigningValidation -restore -msbuildEngine vs /p:PackageBasePath='$(Build.ArtifactStagingDirectory)/PackageArtifacts' - /p:SignCheckExclusionsFile='$(Build.SourcesDirectory)/eng/SignCheckExclusionsFile.txt' + /p:SignCheckExclusionsFile='$(System.DefaultWorkingDirectory)/eng/SignCheckExclusionsFile.txt' ${{ parameters.signingValidationAdditionalParameters }} - template: ../steps/publish-logs.yml @@ -230,7 +230,7 @@ stages: - task: PowerShell@2 displayName: Validate inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/sourcelink-validation.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/sourcelink-validation.ps1 arguments: -InputPath $(Build.ArtifactStagingDirectory)/BlobArtifacts/ -ExtractPath $(Agent.BuildDirectory)/Extract/ -GHRepoName $(Build.Repository.Name) @@ -278,7 +278,7 @@ stages: azureSubscription: "Darc: Maestro Production" scriptType: ps scriptLocation: scriptPath - scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + scriptPath: $(System.DefaultWorkingDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion ${{ parameters.publishingInfraVersion }} -AzdoToken '$(System.AccessToken)' diff --git a/eng/common/templates-official/post-build/trigger-subscription.yml b/eng/common/templates-official/post-build/trigger-subscription.yml index da669030daf6..52df70774828 100644 --- a/eng/common/templates-official/post-build/trigger-subscription.yml +++ b/eng/common/templates-official/post-build/trigger-subscription.yml @@ -5,7 +5,7 @@ steps: - task: PowerShell@2 displayName: Triggering subscriptions inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/trigger-subscriptions.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/trigger-subscriptions.ps1 arguments: -SourceRepo $(Build.Repository.Uri) -ChannelId ${{ parameters.ChannelId }} -MaestroApiAccessToken $(MaestroAccessToken) diff --git a/eng/common/templates-official/steps/add-build-to-channel.yml b/eng/common/templates-official/steps/add-build-to-channel.yml index f67a210d62f3..5b6fec257ea7 100644 --- a/eng/common/templates-official/steps/add-build-to-channel.yml +++ b/eng/common/templates-official/steps/add-build-to-channel.yml @@ -5,7 +5,7 @@ steps: - task: PowerShell@2 displayName: Add Build to Channel inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/add-build-to-channel.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/add-build-to-channel.ps1 arguments: -BuildId $(BARBuildId) -ChannelId ${{ parameters.ChannelId }} -MaestroApiAccessToken $(MaestroApiAccessToken) diff --git a/eng/common/templates-official/steps/execute-sdl.yml b/eng/common/templates-official/steps/execute-sdl.yml index 301d5c591ebd..d9dcd1e1cdeb 100644 --- a/eng/common/templates-official/steps/execute-sdl.yml +++ b/eng/common/templates-official/steps/execute-sdl.yml @@ -15,17 +15,17 @@ steps: - ${{ if ne(parameters.overrideGuardianVersion, '') }}: - pwsh: | - Set-Location -Path $(Build.SourcesDirectory)\eng\common\sdl + Set-Location -Path $(System.DefaultWorkingDirectory)\eng\common\sdl . .\sdl.ps1 - $guardianCliLocation = Install-Gdn -Path $(Build.SourcesDirectory)\.artifacts -Version ${{ parameters.overrideGuardianVersion }} + $guardianCliLocation = Install-Gdn -Path $(System.DefaultWorkingDirectory)\.artifacts -Version ${{ parameters.overrideGuardianVersion }} Write-Host "##vso[task.setvariable variable=GuardianCliLocation]$guardianCliLocation" displayName: Install Guardian (Overridden) - ${{ if eq(parameters.overrideGuardianVersion, '') }}: - pwsh: | - Set-Location -Path $(Build.SourcesDirectory)\eng\common\sdl + Set-Location -Path $(System.DefaultWorkingDirectory)\eng\common\sdl . .\sdl.ps1 - $guardianCliLocation = Install-Gdn -Path $(Build.SourcesDirectory)\.artifacts + $guardianCliLocation = Install-Gdn -Path $(System.DefaultWorkingDirectory)\.artifacts Write-Host "##vso[task.setvariable variable=GuardianCliLocation]$guardianCliLocation" displayName: Install Guardian @@ -38,7 +38,7 @@ steps: - ${{ if eq(parameters.overrideParameters, '') }}: - powershell: ${{ parameters.executeAllSdlToolsScript }} -GuardianCliLocation $(GuardianCliLocation) - -NugetPackageDirectory $(Build.SourcesDirectory)\.packages + -NugetPackageDirectory $(System.DefaultWorkingDirectory)\.packages -AzureDevOpsAccessToken $(dn-bot-dotnet-build-rw-code-rw) ${{ parameters.additionalParameters }} displayName: Execute SDL @@ -73,7 +73,7 @@ steps: flattenFolders: true sourceFolder: $(Agent.BuildDirectory)/.gdn/rc/ contents: '**/*.sarif' - targetFolder: $(Build.SourcesDirectory)/CodeAnalysisLogs + targetFolder: $(System.DefaultWorkingDirectory)/CodeAnalysisLogs condition: succeededOrFailed() # Use PublishBuildArtifacts because the SARIF extension only checks this case @@ -81,6 +81,6 @@ steps: - task: PublishBuildArtifacts@1 displayName: Publish SARIF files to CodeAnalysisLogs container inputs: - pathToPublish: $(Build.SourcesDirectory)/CodeAnalysisLogs + pathToPublish: $(System.DefaultWorkingDirectory)/CodeAnalysisLogs artifactName: CodeAnalysisLogs condition: succeededOrFailed() \ No newline at end of file diff --git a/eng/common/templates-official/steps/generate-sbom.yml b/eng/common/templates-official/steps/generate-sbom.yml index daf0957b68d7..1536353566c7 100644 --- a/eng/common/templates-official/steps/generate-sbom.yml +++ b/eng/common/templates-official/steps/generate-sbom.yml @@ -6,7 +6,7 @@ parameters: PackageVersion: 8.0.0 - BuildDropPath: '$(Build.SourcesDirectory)/artifacts' + BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' PackageName: '.NET' ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom IgnoreDirectories: '' diff --git a/eng/common/templates-official/steps/publish-logs.yml b/eng/common/templates-official/steps/publish-logs.yml index 04012fed182a..af5a40b64c4b 100644 --- a/eng/common/templates-official/steps/publish-logs.yml +++ b/eng/common/templates-official/steps/publish-logs.yml @@ -8,15 +8,15 @@ steps: inputs: targetType: inline script: | - New-Item -ItemType Directory $(Build.SourcesDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ - Move-Item -Path $(Build.SourcesDirectory)/artifacts/log/Debug/* $(Build.SourcesDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ + New-Item -ItemType Directory $(System.DefaultWorkingDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ + Move-Item -Path $(System.DefaultWorkingDirectory)/artifacts/log/Debug/* $(System.DefaultWorkingDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ continueOnError: true condition: always() - task: 1ES.PublishBuildArtifacts@1 displayName: Publish Logs inputs: - PathtoPublish: '$(Build.SourcesDirectory)/PostBuildLogs' + PathtoPublish: '$(System.DefaultWorkingDirectory)/PostBuildLogs' PublishLocation: Container ArtifactName: PostBuildLogs continueOnError: true diff --git a/eng/common/templates-official/steps/source-build.yml b/eng/common/templates-official/steps/source-build.yml index 829f17c34d11..a69631446da2 100644 --- a/eng/common/templates-official/steps/source-build.yml +++ b/eng/common/templates-official/steps/source-build.yml @@ -26,8 +26,8 @@ steps: internalRestoreArgs= if [ '$(dn-bot-dnceng-artifact-feeds-rw)' != '$''(dn-bot-dnceng-artifact-feeds-rw)' ]; then # Temporarily work around https://github.com/dotnet/arcade/issues/7709 - chmod +x $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh - $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh $(Build.SourcesDirectory)/NuGet.config $(dn-bot-dnceng-artifact-feeds-rw) + chmod +x $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh + $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh $(System.DefaultWorkingDirectory)/NuGet.config $(dn-bot-dnceng-artifact-feeds-rw) internalRestoreArgs='/p:CopyWipIntoInnerSourceBuildRepo=true' # The 'Copy WIP' feature of source build uses git stash to apply changes from the original repo. @@ -101,7 +101,7 @@ steps: - task: CopyFiles@2 displayName: Prepare BuildLogs staging directory inputs: - SourceFolder: '$(Build.SourcesDirectory)' + SourceFolder: '$(System.DefaultWorkingDirectory)' Contents: | **/*.log **/*.binlog @@ -126,4 +126,4 @@ steps: - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection (Exclude upstream cache) inputs: - ignoreDirectories: '$(Build.SourcesDirectory)/artifacts/source-build/self/src/artifacts/obj/source-built-upstream-cache' + ignoreDirectories: '$(System.DefaultWorkingDirectory)/artifacts/source-build/self/src/artifacts/obj/source-built-upstream-cache' diff --git a/eng/common/templates-official/variables/sdl-variables.yml b/eng/common/templates-official/variables/sdl-variables.yml index dbdd66d4a4b3..f1311bbb1b33 100644 --- a/eng/common/templates-official/variables/sdl-variables.yml +++ b/eng/common/templates-official/variables/sdl-variables.yml @@ -4,4 +4,4 @@ variables: - name: DefaultGuardianVersion value: 0.109.0 - name: GuardianPackagesConfigFile - value: $(Build.SourcesDirectory)\eng\common\sdl\packages.config \ No newline at end of file + value: $(System.DefaultWorkingDirectory)\eng\common\sdl\packages.config \ No newline at end of file diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml index 2856f7de1061..80454d5a5587 100644 --- a/eng/common/templates/job/job.yml +++ b/eng/common/templates/job/job.yml @@ -37,7 +37,7 @@ parameters: # Sbom related params enableSbom: true PackageVersion: 7.0.0 - BuildDropPath: '$(Build.SourcesDirectory)/artifacts' + BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' jobs: - job: ${{ parameters.name }} @@ -163,7 +163,7 @@ jobs: inputs: languages: ${{ coalesce(parameters.richCodeNavigationLanguage, 'csharp') }} environment: ${{ coalesce(parameters.richCodeNavigationEnvironment, 'production') }} - richNavLogOutputDirectory: $(Build.SourcesDirectory)/artifacts/bin + richNavLogOutputDirectory: $(System.DefaultWorkingDirectory)/artifacts/bin uploadRichNavArtifacts: ${{ coalesce(parameters.richCodeNavigationUploadArtifacts, false) }} continueOnError: true @@ -220,7 +220,7 @@ jobs: - task: PublishBuildArtifacts@1 displayName: Publish Logs inputs: - PathtoPublish: '$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)' + PathtoPublish: '$(System.DefaultWorkingDirectory)/artifacts/log/$(_BuildConfig)' PublishLocation: Container ArtifactName: ${{ coalesce(parameters.enablePublishBuildArtifacts.artifactName, '$(Agent.Os)_$(Agent.JobName)' ) }} continueOnError: true @@ -232,7 +232,7 @@ jobs: inputs: testResultsFormat: 'xUnit' testResultsFiles: '*.xml' - searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)' + searchFolder: '$(System.DefaultWorkingDirectory)/artifacts/TestResults/$(_BuildConfig)' testRunTitle: ${{ coalesce(parameters.testRunTitle, parameters.name, '$(System.JobName)') }}-xunit mergeTestResults: ${{ parameters.mergeTestResults }} continueOnError: true @@ -243,7 +243,7 @@ jobs: inputs: testResultsFormat: 'VSTest' testResultsFiles: '*.trx' - searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)' + searchFolder: '$(System.DefaultWorkingDirectory)/artifacts/TestResults/$(_BuildConfig)' testRunTitle: ${{ coalesce(parameters.testRunTitle, parameters.name, '$(System.JobName)') }}-trx mergeTestResults: ${{ parameters.mergeTestResults }} continueOnError: true @@ -257,7 +257,7 @@ jobs: IgnoreDirectories: ${{ parameters.componentGovernanceIgnoreDirectories }} - ${{ if eq(parameters.enableBuildRetry, 'true') }}: - - publish: $(Build.SourcesDirectory)\eng\common\BuildConfiguration + - publish: $(System.DefaultWorkingDirectory)\eng\common\BuildConfiguration artifact: BuildConfiguration displayName: Publish build retry configuration continueOnError: true diff --git a/eng/common/templates/job/onelocbuild.yml b/eng/common/templates/job/onelocbuild.yml index 60ab00c4de3a..2cd3840c9927 100644 --- a/eng/common/templates/job/onelocbuild.yml +++ b/eng/common/templates/job/onelocbuild.yml @@ -8,7 +8,7 @@ parameters: CeapexPat: $(dn-bot-ceapex-package-r) # PAT for the loc AzDO instance https://dev.azure.com/ceapex GithubPat: $(BotAccount-dotnet-bot-repo-PAT) - SourcesDirectory: $(Build.SourcesDirectory) + SourcesDirectory: $(System.DefaultWorkingDirectory) CreatePr: true AutoCompletePr: false ReusePr: true @@ -60,7 +60,7 @@ jobs: - ${{ if ne(parameters.SkipLocProjectJsonGeneration, 'true') }}: - task: Powershell@2 inputs: - filePath: $(Build.SourcesDirectory)/eng/common/generate-locproject.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/generate-locproject.ps1 arguments: $(_GenerateLocProjectArguments) displayName: Generate LocProject.json condition: ${{ parameters.condition }} @@ -103,7 +103,7 @@ jobs: - task: PublishBuildArtifacts@1 displayName: Publish LocProject.json inputs: - PathtoPublish: '$(Build.SourcesDirectory)/eng/Localize/' + PathtoPublish: '$(System.DefaultWorkingDirectory)/eng/Localize/' PublishLocation: Container ArtifactName: Loc condition: ${{ parameters.condition }} \ No newline at end of file diff --git a/eng/common/templates/job/publish-build-assets.yml b/eng/common/templates/job/publish-build-assets.yml index cc2b346ba8ba..2956d8117f73 100644 --- a/eng/common/templates/job/publish-build-assets.yml +++ b/eng/common/templates/job/publish-build-assets.yml @@ -30,6 +30,8 @@ parameters: signingValidationAdditionalParameters: '' + repositoryAlias: self + jobs: - job: Asset_Registry_Publish @@ -63,6 +65,9 @@ jobs: steps: - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - checkout: ${{ parameters.repositoryAlias }} + fetchDepth: 3 + clean: true - task: DownloadBuildArtifacts@0 displayName: Download artifact inputs: @@ -80,7 +85,7 @@ jobs: azureSubscription: "Darc: Maestro Production" scriptType: ps scriptLocation: scriptPath - scriptPath: $(Build.SourcesDirectory)/eng/common/sdk-task.ps1 + scriptPath: $(System.DefaultWorkingDirectory)/eng/common/sdk-task.ps1 arguments: > -task PublishBuildAssets -restore -msbuildEngine dotnet /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' @@ -111,7 +116,7 @@ jobs: inputs: targetType: inline script: | - $symbolExclusionfile = "$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt" + $symbolExclusionfile = "$(System.DefaultWorkingDirectory)/eng/SymbolPublishingExclusionsFile.txt" if(Test-Path -Path $symbolExclusionfile) { Write-Host "SymbolExclusionFile exists" @@ -126,7 +131,7 @@ jobs: displayName: Publish SymbolPublishingExclusionsFile Artifact condition: eq(variables['SymbolExclusionFile'], 'true') inputs: - PathtoPublish: '$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt' + PathtoPublish: '$(System.DefaultWorkingDirectory)/eng/SymbolPublishingExclusionsFile.txt' PublishLocation: Container ArtifactName: ReleaseConfigs @@ -142,7 +147,7 @@ jobs: azureSubscription: "Darc: Maestro Production" scriptType: ps scriptLocation: scriptPath - scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + scriptPath: $(System.DefaultWorkingDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion 3 -AzdoToken '$(System.AccessToken)' diff --git a/eng/common/templates/job/source-index-stage1.yml b/eng/common/templates/job/source-index-stage1.yml index 8538f44bab28..81606fd9a541 100644 --- a/eng/common/templates/job/source-index-stage1.yml +++ b/eng/common/templates/job/source-index-stage1.yml @@ -58,7 +58,7 @@ jobs: - script: ${{ parameters.sourceIndexBuildCommand }} displayName: Build Repository - - script: $(Agent.TempDirectory)/.source-index/tools/BinLogToSln -i $(BinlogPath) -r $(Build.SourcesDirectory) -n $(Build.Repository.Name) -o .source-index/stage1output + - script: $(Agent.TempDirectory)/.source-index/tools/BinLogToSln -i $(BinlogPath) -r $(System.DefaultWorkingDirectory) -n $(Build.Repository.Name) -o .source-index/stage1output displayName: Process Binlog into indexable sln - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: diff --git a/eng/common/templates/jobs/codeql-build.yml b/eng/common/templates/jobs/codeql-build.yml index f7dc5ea4aaa6..e8b43e3b4cba 100644 --- a/eng/common/templates/jobs/codeql-build.yml +++ b/eng/common/templates/jobs/codeql-build.yml @@ -23,7 +23,7 @@ jobs: - name: DefaultGuardianVersion value: 0.109.0 - name: GuardianPackagesConfigFile - value: $(Build.SourcesDirectory)\eng\common\sdl\packages.config + value: $(System.DefaultWorkingDirectory)\eng\common\sdl\packages.config - name: GuardianVersion value: ${{ coalesce(parameters.overrideGuardianVersion, '$(DefaultGuardianVersion)') }} diff --git a/eng/common/templates/jobs/jobs.yml b/eng/common/templates/jobs/jobs.yml index 289bb2396ce8..34387a8c7acd 100644 --- a/eng/common/templates/jobs/jobs.yml +++ b/eng/common/templates/jobs/jobs.yml @@ -40,6 +40,7 @@ parameters: enableSourceIndex: false sourceIndexParams: {} + repositoryAlias: self # Internal resources (telemetry, microbuild) can only be accessed from non-public projects, # and some (Microbuild) should only be applied to non-PR cases for internal builds. @@ -95,3 +96,4 @@ jobs: enablePublishBuildArtifacts: ${{ parameters.enablePublishBuildArtifacts }} artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} signingValidationAdditionalParameters: ${{ parameters.signingValidationAdditionalParameters }} + repositoryAlias: ${{ parameters.repositoryAlias }} diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index c3b6a3012fee..6e5722dc2e17 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -130,7 +130,7 @@ stages: - task: PowerShell@2 displayName: Validate inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/nuget-validation.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/nuget-validation.ps1 arguments: -PackagesPath $(Build.ArtifactStagingDirectory)/PackageArtifacts/ -ToolDestinationPath $(Agent.BuildDirectory)/Extract/ @@ -180,7 +180,7 @@ stages: filePath: eng\common\sdk-task.ps1 arguments: -task SigningValidation -restore -msbuildEngine vs /p:PackageBasePath='$(Build.ArtifactStagingDirectory)/PackageArtifacts' - /p:SignCheckExclusionsFile='$(Build.SourcesDirectory)/eng/SignCheckExclusionsFile.txt' + /p:SignCheckExclusionsFile='$(System.DefaultWorkingDirectory)/eng/SignCheckExclusionsFile.txt' ${{ parameters.signingValidationAdditionalParameters }} - template: ../steps/publish-logs.yml @@ -220,7 +220,7 @@ stages: - task: PowerShell@2 displayName: Validate inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/sourcelink-validation.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/sourcelink-validation.ps1 arguments: -InputPath $(Build.ArtifactStagingDirectory)/BlobArtifacts/ -ExtractPath $(Agent.BuildDirectory)/Extract/ -GHRepoName $(Build.Repository.Name) @@ -274,7 +274,7 @@ stages: azureSubscription: "Darc: Maestro Production" scriptType: ps scriptLocation: scriptPath - scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + scriptPath: $(System.DefaultWorkingDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion ${{ parameters.publishingInfraVersion }} -AzdoToken '$(System.AccessToken)' diff --git a/eng/common/templates/post-build/setup-maestro-vars.yml b/eng/common/templates/post-build/setup-maestro-vars.yml index 64b9abc68504..4347fa80b684 100644 --- a/eng/common/templates/post-build/setup-maestro-vars.yml +++ b/eng/common/templates/post-build/setup-maestro-vars.yml @@ -32,7 +32,7 @@ steps: $AzureDevOpsBuildId = $Env:Build_BuildId } else { - . $(Build.SourcesDirectory)\eng\common\tools.ps1 + . $(System.DefaultWorkingDirectory)\eng\common\tools.ps1 $darc = Get-Darc $buildInfo = & $darc get-build ` --id ${{ parameters.BARBuildId }} ` diff --git a/eng/common/templates/post-build/trigger-subscription.yml b/eng/common/templates/post-build/trigger-subscription.yml index da669030daf6..52df70774828 100644 --- a/eng/common/templates/post-build/trigger-subscription.yml +++ b/eng/common/templates/post-build/trigger-subscription.yml @@ -5,7 +5,7 @@ steps: - task: PowerShell@2 displayName: Triggering subscriptions inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/trigger-subscriptions.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/trigger-subscriptions.ps1 arguments: -SourceRepo $(Build.Repository.Uri) -ChannelId ${{ parameters.ChannelId }} -MaestroApiAccessToken $(MaestroAccessToken) diff --git a/eng/common/templates/steps/add-build-to-channel.yml b/eng/common/templates/steps/add-build-to-channel.yml index f67a210d62f3..5b6fec257ea7 100644 --- a/eng/common/templates/steps/add-build-to-channel.yml +++ b/eng/common/templates/steps/add-build-to-channel.yml @@ -5,7 +5,7 @@ steps: - task: PowerShell@2 displayName: Add Build to Channel inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/add-build-to-channel.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/add-build-to-channel.ps1 arguments: -BuildId $(BARBuildId) -ChannelId ${{ parameters.ChannelId }} -MaestroApiAccessToken $(MaestroApiAccessToken) diff --git a/eng/common/templates/steps/execute-sdl.yml b/eng/common/templates/steps/execute-sdl.yml index fe0ebf8c904e..047e8281ebc0 100644 --- a/eng/common/templates/steps/execute-sdl.yml +++ b/eng/common/templates/steps/execute-sdl.yml @@ -15,17 +15,17 @@ steps: - ${{ if ne(parameters.overrideGuardianVersion, '') }}: - pwsh: | - Set-Location -Path $(Build.SourcesDirectory)\eng\common\sdl + Set-Location -Path $(System.DefaultWorkingDirectory)\eng\common\sdl . .\sdl.ps1 - $guardianCliLocation = Install-Gdn -Path $(Build.SourcesDirectory)\.artifacts -Version ${{ parameters.overrideGuardianVersion }} + $guardianCliLocation = Install-Gdn -Path $(System.DefaultWorkingDirectory)\.artifacts -Version ${{ parameters.overrideGuardianVersion }} Write-Host "##vso[task.setvariable variable=GuardianCliLocation]$guardianCliLocation" displayName: Install Guardian (Overridden) - ${{ if eq(parameters.overrideGuardianVersion, '') }}: - pwsh: | - Set-Location -Path $(Build.SourcesDirectory)\eng\common\sdl + Set-Location -Path $(System.DefaultWorkingDirectory)\eng\common\sdl . .\sdl.ps1 - $guardianCliLocation = Install-Gdn -Path $(Build.SourcesDirectory)\.artifacts + $guardianCliLocation = Install-Gdn -Path $(System.DefaultWorkingDirectory)\.artifacts Write-Host "##vso[task.setvariable variable=GuardianCliLocation]$guardianCliLocation" displayName: Install Guardian @@ -40,7 +40,7 @@ steps: - ${{ if eq(parameters.overrideParameters, '') }}: - powershell: ${{ parameters.executeAllSdlToolsScript }} -GuardianCliLocation $(GuardianCliLocation) - -NugetPackageDirectory $(Build.SourcesDirectory)\.packages + -NugetPackageDirectory $(System.DefaultWorkingDirectory)\.packages ${{ parameters.additionalParameters }} displayName: Execute SDL continueOnError: ${{ parameters.sdlContinueOnError }} @@ -76,7 +76,7 @@ steps: flattenFolders: true sourceFolder: $(Agent.BuildDirectory)/.gdn/rc/ contents: '**/*.sarif' - targetFolder: $(Build.SourcesDirectory)/CodeAnalysisLogs + targetFolder: $(System.DefaultWorkingDirectory)/CodeAnalysisLogs condition: succeededOrFailed() # Use PublishBuildArtifacts because the SARIF extension only checks this case @@ -84,6 +84,6 @@ steps: - task: PublishBuildArtifacts@1 displayName: Publish SARIF files to CodeAnalysisLogs container inputs: - pathToPublish: $(Build.SourcesDirectory)/CodeAnalysisLogs + pathToPublish: $(System.DefaultWorkingDirectory)/CodeAnalysisLogs artifactName: CodeAnalysisLogs condition: succeededOrFailed() \ No newline at end of file diff --git a/eng/common/templates/steps/generate-sbom.yml b/eng/common/templates/steps/generate-sbom.yml index 2b21eae42732..b1fe8b3944b3 100644 --- a/eng/common/templates/steps/generate-sbom.yml +++ b/eng/common/templates/steps/generate-sbom.yml @@ -6,7 +6,7 @@ parameters: PackageVersion: 8.0.0 - BuildDropPath: '$(Build.SourcesDirectory)/artifacts' + BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' PackageName: '.NET' ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom IgnoreDirectories: '' diff --git a/eng/common/templates/steps/publish-logs.yml b/eng/common/templates/steps/publish-logs.yml index 88f238f36bfd..e2f8413d8e19 100644 --- a/eng/common/templates/steps/publish-logs.yml +++ b/eng/common/templates/steps/publish-logs.yml @@ -8,15 +8,15 @@ steps: inputs: targetType: inline script: | - New-Item -ItemType Directory $(Build.SourcesDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ - Move-Item -Path $(Build.SourcesDirectory)/artifacts/log/Debug/* $(Build.SourcesDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ + New-Item -ItemType Directory $(System.DefaultWorkingDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ + Move-Item -Path $(System.DefaultWorkingDirectory)/artifacts/log/Debug/* $(System.DefaultWorkingDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ continueOnError: true condition: always() - task: PublishBuildArtifacts@1 displayName: Publish Logs inputs: - PathtoPublish: '$(Build.SourcesDirectory)/PostBuildLogs' + PathtoPublish: '$(System.DefaultWorkingDirectory)/PostBuildLogs' PublishLocation: Container ArtifactName: PostBuildLogs continueOnError: true diff --git a/eng/common/templates/steps/source-build.yml b/eng/common/templates/steps/source-build.yml index 41bbb915736a..4fb5643e5ded 100644 --- a/eng/common/templates/steps/source-build.yml +++ b/eng/common/templates/steps/source-build.yml @@ -26,8 +26,8 @@ steps: internalRestoreArgs= if [ '$(dn-bot-dnceng-artifact-feeds-rw)' != '$''(dn-bot-dnceng-artifact-feeds-rw)' ]; then # Temporarily work around https://github.com/dotnet/arcade/issues/7709 - chmod +x $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh - $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh $(Build.SourcesDirectory)/NuGet.config $(dn-bot-dnceng-artifact-feeds-rw) + chmod +x $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh + $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh $(System.DefaultWorkingDirectory)/NuGet.config $(dn-bot-dnceng-artifact-feeds-rw) internalRestoreArgs='/p:CopyWipIntoInnerSourceBuildRepo=true' # The 'Copy WIP' feature of source build uses git stash to apply changes from the original repo. @@ -101,7 +101,7 @@ steps: - task: CopyFiles@2 displayName: Prepare BuildLogs staging directory inputs: - SourceFolder: '$(Build.SourcesDirectory)' + SourceFolder: '$(System.DefaultWorkingDirectory)' Contents: | **/*.log **/*.binlog @@ -126,4 +126,4 @@ steps: - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection (Exclude upstream cache) inputs: - ignoreDirectories: '$(Build.SourcesDirectory)/artifacts/source-build/self/src/artifacts/obj/source-built-upstream-cache' + ignoreDirectories: '$(System.DefaultWorkingDirectory)/artifacts/source-build/self/src/artifacts/obj/source-built-upstream-cache' diff --git a/eng/common/templates/variables/sdl-variables.yml b/eng/common/templates/variables/sdl-variables.yml index dbdd66d4a4b3..f1311bbb1b33 100644 --- a/eng/common/templates/variables/sdl-variables.yml +++ b/eng/common/templates/variables/sdl-variables.yml @@ -4,4 +4,4 @@ variables: - name: DefaultGuardianVersion value: 0.109.0 - name: GuardianPackagesConfigFile - value: $(Build.SourcesDirectory)\eng\common\sdl\packages.config \ No newline at end of file + value: $(System.DefaultWorkingDirectory)\eng\common\sdl\packages.config \ No newline at end of file diff --git a/global.json b/global.json index 24482931e6f1..35c55ef5902d 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25407.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25407.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25415.2", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25415.2" } } From 931400fca379f0882a9c4a4e7c55f37baab4124a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 16 Aug 2025 05:41:46 +0000 Subject: [PATCH 014/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250815.21 dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.20-servicing.25413.2 -> To Version 8.0.20-servicing.25415.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 4a1155d0d453..87cab1b4f9fb 100644 --- a/NuGet.config +++ b/NuGet.config @@ -12,7 +12,7 @@ - + @@ -51,7 +51,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 443c5f3b5c86..25a7c5f3eda7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - cea0b1a66f968b2ab1c992ad86376fe74b82a566 + a963a15a6fe69263d5381a6d0fb98f6fff0003f8 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 26043217f590..7be69866ad01 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -168,11 +168,11 @@ 8.0.20 - 8.0.20-servicing.25415.15 - 8.0.20-servicing.25415.15 - 8.0.20-servicing.25415.15 - 8.0.20-servicing.25415.15 - 8.0.20-servicing.25415.15 + 8.0.20-servicing.25415.21 + 8.0.20-servicing.25415.21 + 8.0.20-servicing.25415.21 + 8.0.20-servicing.25415.21 + 8.0.20-servicing.25415.21 8.0.20 From 1ff1735fd6e99d38924669cfbc1e90b5c535f893 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 16 Aug 2025 21:37:02 +0000 Subject: [PATCH 015/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250816.1 Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 , VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.20 -> To Version 8.0.20 Dependency coherency updates Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.20-servicing.25413.5 -> To Version 8.0.20-servicing.25415.2 (parent: Microsoft.WindowsDesktop.App.Ref --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 87cab1b4f9fb..fd1af0e281cc 100644 --- a/NuGet.config +++ b/NuGet.config @@ -26,7 +26,7 @@ - + @@ -62,7 +62,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 25a7c5f3eda7..4718bceee1cf 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c0b240c049009c7056ade8a451821fbb9bfe3cd9 + 5389367cfc96b37742df969ee8be968e8b3cadaa - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c0b240c049009c7056ade8a451821fbb9bfe3cd9 + 5389367cfc96b37742df969ee8be968e8b3cadaa https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c0b240c049009c7056ade8a451821fbb9bfe3cd9 + 5389367cfc96b37742df969ee8be968e8b3cadaa - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c0b240c049009c7056ade8a451821fbb9bfe3cd9 + 5389367cfc96b37742df969ee8be968e8b3cadaa - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 2d7eca6fab93a8568ab489034f975d937502322a + 6d0860a9836d13b717b2bf679798d6de0cd15129 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 7be69866ad01..90916271f543 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -183,7 +183,7 @@ - 8.0.20-servicing.25413.5 + 8.0.20-servicing.25415.2 From 347d270e537cd7dc9f7303d70c62f1b6188c4b19 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 18 Aug 2025 03:11:25 +0000 Subject: [PATCH 016/392] Update dependencies from https://github.com/dotnet/templating build 20250817.1 Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks From Version 8.0.120-servicing.25407.2 -> To Version 8.0.120-servicing.25417.1 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index f9570d10fe64..b0995c27f77d 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3760809120f7..efe8ae5e14db 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - d4ad9a875faeccf90774d5130c3cf6048738c15d + 16fd0f57a0ae25dbb3e609a5f04ee733d8efeaeb - + https://github.com/dotnet/templating - d4ad9a875faeccf90774d5130c3cf6048738c15d + 16fd0f57a0ae25dbb3e609a5f04ee733d8efeaeb - + https://github.com/dotnet/templating - d4ad9a875faeccf90774d5130c3cf6048738c15d + 16fd0f57a0ae25dbb3e609a5f04ee733d8efeaeb diff --git a/eng/Versions.props b/eng/Versions.props index 83a354abefa7..190c59b9ef53 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -145,7 +145,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.120-servicing.25414.2 + 8.0.120-servicing.25417.1 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 7c2543cbdb7149d64936e82e25ec6539635fcfb0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Aug 2025 02:41:36 +0000 Subject: [PATCH 017/392] Update dependencies from https://github.com/dotnet/msbuild build 20250820.1 Microsoft.SourceBuild.Intermediate.msbuild , Microsoft.Build , Microsoft.Build.Localization From Version 17.8.36-servicing-25411-03 -> To Version 17.8.37-servicing-25420-01 --- NuGet.config | 3 ++- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/NuGet.config b/NuGet.config index b0995c27f77d..7d3de251855e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -22,6 +22,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0d43b66d2853..4abf31626100 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -55,17 +55,17 @@ https://github.com/dotnet/emsdk 6fd14a46f7bc405f4ba53b1e691c76fdc6324b0b - + https://github.com/dotnet/msbuild - 03e28d165c0959ee43aa91c2612776b011522a70 + 19b03fa0ed956540e434a64171bc606d96bb812e - + https://github.com/dotnet/msbuild - 03e28d165c0959ee43aa91c2612776b011522a70 + 19b03fa0ed956540e434a64171bc606d96bb812e - + https://github.com/dotnet/msbuild - 03e28d165c0959ee43aa91c2612776b011522a70 + 19b03fa0ed956540e434a64171bc606d96bb812e diff --git a/eng/Versions.props b/eng/Versions.props index 5294d65bc2d7..3172516559fb 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -123,7 +123,7 @@ - 17.8.36 + 17.8.37 $(MicrosoftBuildPackageVersion) + @@ -13,6 +14,7 @@ + @@ -20,13 +22,15 @@ - + + + @@ -51,6 +55,7 @@ + @@ -59,9 +64,10 @@ - + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5b846ed5eca3..acc6e51d19b1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dd6010a8a425962e7793cc741e1f79f8681e4882 + 574100b692e71fa3426931adf4c1ba42e4ee5213 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dd6010a8a425962e7793cc741e1f79f8681e4882 + 574100b692e71fa3426931adf4c1ba42e4ee5213 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dd6010a8a425962e7793cc741e1f79f8681e4882 + 574100b692e71fa3426931adf4c1ba42e4ee5213 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dd6010a8a425962e7793cc741e1f79f8681e4882 + 574100b692e71fa3426931adf4c1ba42e4ee5213 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dd6010a8a425962e7793cc741e1f79f8681e4882 + 574100b692e71fa3426931adf4c1ba42e4ee5213 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dd6010a8a425962e7793cc741e1f79f8681e4882 + 574100b692e71fa3426931adf4c1ba42e4ee5213 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dd6010a8a425962e7793cc741e1f79f8681e4882 + 574100b692e71fa3426931adf4c1ba42e4ee5213 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,11 +49,11 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dd6010a8a425962e7793cc741e1f79f8681e4882 + 574100b692e71fa3426931adf4c1ba42e4ee5213 - + https://github.com/dotnet/emsdk - 6fd14a46f7bc405f4ba53b1e691c76fdc6324b0b + 222749b48ecb0fe78f236ca9c61f6ff3b09cdc99 https://github.com/dotnet/msbuild @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dd6010a8a425962e7793cc741e1f79f8681e4882 + 574100b692e71fa3426931adf4c1ba42e4ee5213 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 5757139dddaf..0ceb3c2cdac3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.20 - 8.0.20-servicing.25415.11 + 8.0.20-servicing.25419.14 8.0.20 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.20 - 8.0.20-servicing.25415.11 + 8.0.20-servicing.25419.14 8.0.0 8.0.1 8.0.3 @@ -227,7 +227,7 @@ - 8.0.19 + 8.0.20 $(MicrosoftNETWorkloadEmscriptenCurrentManifest80100PackageVersion) 8.0.100$([System.Text.RegularExpressions.Regex]::Match($(EmscriptenWorkloadManifestVersion), `-rtm|-[A-z]*\.*\d*`)) From 703d18eafb5daecec5f627efa1f9d291572b07fb Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 20 Aug 2025 08:10:32 +0000 Subject: [PATCH 019/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250819.13 dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.20-servicing.25415.21 -> To Version 8.0.20-servicing.25419.13 --- NuGet.config | 6 ++--- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 37 deletions(-) diff --git a/NuGet.config b/NuGet.config index 9b5df07cc38c..b169bd4b5408 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,8 +13,7 @@ - - + @@ -55,8 +54,7 @@ - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index acc6e51d19b1..9fc53242f3d2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - a963a15a6fe69263d5381a6d0fb98f6fff0003f8 + 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 0ceb3c2cdac3..12e03c6142a4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -168,11 +168,11 @@ 8.0.20 - 8.0.20-servicing.25415.21 - 8.0.20-servicing.25415.21 - 8.0.20-servicing.25415.21 - 8.0.20-servicing.25415.21 - 8.0.20-servicing.25415.21 + 8.0.20-servicing.25419.13 + 8.0.20-servicing.25419.13 + 8.0.20-servicing.25419.13 + 8.0.20-servicing.25419.13 + 8.0.20-servicing.25419.13 8.0.20 From ce48692ee1932ceb6eec36f11399777a0d6627ac Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 20 Aug 2025 11:08:25 +0000 Subject: [PATCH 020/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250820.2 dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.20-servicing.25415.21 -> To Version 8.0.20-servicing.25420.2 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index b169bd4b5408..95f80942f8d3 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -54,7 +54,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9fc53242f3d2..4fdfbd850947 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 9edd81d64f41d79c618e2fb3bb8ee9485d9114e1 + c78f4a816c0c6a978a801a05a31dce9013e099e2 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 12e03c6142a4..528c984dc3b0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -168,11 +168,11 @@ 8.0.20 - 8.0.20-servicing.25419.13 - 8.0.20-servicing.25419.13 - 8.0.20-servicing.25419.13 - 8.0.20-servicing.25419.13 - 8.0.20-servicing.25419.13 + 8.0.20-servicing.25420.2 + 8.0.20-servicing.25420.2 + 8.0.20-servicing.25420.2 + 8.0.20-servicing.25420.2 + 8.0.20-servicing.25420.2 8.0.20 From e8182c50c85d007e7ea17f43d97bac9b7793a794 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 21 Aug 2025 19:00:32 +0000 Subject: [PATCH 021/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250821.3 Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 , VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.20 -> To Version 8.0.20 Dependency coherency updates Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.20-servicing.25415.2 -> To Version 8.0.20-servicing.25420.2 (parent: Microsoft.WindowsDesktop.App.Ref --- NuGet.config | 6 ++---- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 13 deletions(-) diff --git a/NuGet.config b/NuGet.config index 95f80942f8d3..d7dce55dd171 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,8 +28,7 @@ - - + @@ -65,8 +64,7 @@ - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4fdfbd850947..0860cf4132e4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 5389367cfc96b37742df969ee8be968e8b3cadaa + 2540f0e77435ce41beaadc94cc0d10ac9981b5a7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 5389367cfc96b37742df969ee8be968e8b3cadaa + 2540f0e77435ce41beaadc94cc0d10ac9981b5a7 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 5389367cfc96b37742df969ee8be968e8b3cadaa + 2540f0e77435ce41beaadc94cc0d10ac9981b5a7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 5389367cfc96b37742df969ee8be968e8b3cadaa + 2540f0e77435ce41beaadc94cc0d10ac9981b5a7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6d0860a9836d13b717b2bf679798d6de0cd15129 + 7b95ca673ef08b7325429a3b675184b815482564 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 528c984dc3b0..b0c573545599 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -183,7 +183,7 @@ - 8.0.20-servicing.25415.2 + 8.0.20-servicing.25420.2 From e7aaa297e525fe1a840ecc09748cbf14529e91b3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 23 Aug 2025 02:03:47 +0000 Subject: [PATCH 022/392] Update dependencies from https://github.com/dotnet/arcade build 20250822.2 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25415.2 -> To Version 8.0.0-beta.25422.2 --- NuGet.config | 2 ++ eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 4 files changed, 14 insertions(+), 12 deletions(-) diff --git a/NuGet.config b/NuGet.config index b0995c27f77d..3f2067fd0aa0 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,6 +22,8 @@ + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0d43b66d2853..27dcb796a46e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 2f70e458e03e348a3a1f3fd6b9b70b4fcd5ba596 + 3e8ada7bce86d4218abd6d9a40daadddabdf16c9 - + https://github.com/dotnet/arcade - 2f70e458e03e348a3a1f3fd6b9b70b4fcd5ba596 + 3e8ada7bce86d4218abd6d9a40daadddabdf16c9 - + https://github.com/dotnet/arcade - 2f70e458e03e348a3a1f3fd6b9b70b4fcd5ba596 + 3e8ada7bce86d4218abd6d9a40daadddabdf16c9 - + https://github.com/dotnet/arcade - 2f70e458e03e348a3a1f3fd6b9b70b4fcd5ba596 + 3e8ada7bce86d4218abd6d9a40daadddabdf16c9 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 5294d65bc2d7..5d7ed99143ff 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25415.2 + 8.0.0-beta.25422.2 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -211,7 +211,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25415.2 + 8.0.0-beta.25422.2 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 35c55ef5902d..1ee151ac29b8 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25415.2", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25415.2" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25422.2", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25422.2" } } From 89ce226a2e213e2306fcd3f7787cc8b0fe310d60 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 24 Aug 2025 09:05:24 +0000 Subject: [PATCH 023/392] Update dependencies from https://github.com/dotnet/razor build 20250824.3 Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport From Version 7.0.0-preview.25377.8 -> To Version 7.0.0-preview.25424.3 --- NuGet.config | 2 ++ eng/Version.Details.xml | 6 +++--- eng/Versions.props | 6 +++--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/NuGet.config b/NuGet.config index b0995c27f77d..3f2067fd0aa0 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,6 +22,8 @@ + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0d43b66d2853..408ef1e2d356 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -293,16 +293,16 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore 277e317dd5cab9859ceea4c8ebae218522c2c173 - + https://github.com/dotnet/razor 4c8bb4ff79523da1aa8ffbf2834ede5118f73d60 - + https://github.com/dotnet/razor 4c8bb4ff79523da1aa8ffbf2834ede5118f73d60 - + https://github.com/dotnet/razor 4c8bb4ff79523da1aa8ffbf2834ede5118f73d60 diff --git a/eng/Versions.props b/eng/Versions.props index 5294d65bc2d7..7df8e8b0a246 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -177,9 +177,9 @@ - 7.0.0-preview.25377.8 - 7.0.0-preview.25377.8 - 7.0.0-preview.25377.8 + 7.0.0-preview.25424.3 + 7.0.0-preview.25424.3 + 7.0.0-preview.25424.3 From f96adce539197e16881f79e4050f8a8336818f3a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 25 Aug 2025 02:43:08 +0000 Subject: [PATCH 024/392] Update dependencies from https://github.com/dotnet/templating build 20250824.1 Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks From Version 8.0.120-servicing.25417.1 -> To Version 8.0.120-servicing.25424.1 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index b0995c27f77d..1b9c2dccf67b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0d43b66d2853..9b8d73228efb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 16fd0f57a0ae25dbb3e609a5f04ee733d8efeaeb + e55677bc9e9afb72f91f589e7b003f1cee440880 - + https://github.com/dotnet/templating - 16fd0f57a0ae25dbb3e609a5f04ee733d8efeaeb + e55677bc9e9afb72f91f589e7b003f1cee440880 - + https://github.com/dotnet/templating - 16fd0f57a0ae25dbb3e609a5f04ee733d8efeaeb + e55677bc9e9afb72f91f589e7b003f1cee440880 diff --git a/eng/Versions.props b/eng/Versions.props index 5294d65bc2d7..b03874dad0e4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -145,7 +145,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.120-servicing.25417.1 + 8.0.120-servicing.25424.1 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 64b3c125eeb7ab77bd62bfc149572bf2b66cc033 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 26 Aug 2025 03:48:27 +0000 Subject: [PATCH 025/392] Update dependencies from https://github.com/dotnet/msbuild build 20250826.2 Microsoft.SourceBuild.Intermediate.msbuild , Microsoft.Build , Microsoft.Build.Localization From Version 17.8.36-servicing-25411-03 -> To Version 17.8.38-servicing-25426-02 --- NuGet.config | 4 +++- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/NuGet.config b/NuGet.config index 7d3de251855e..56d09a5a35ab 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -22,6 +22,8 @@ + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4abf31626100..7a163fee4a76 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -55,17 +55,17 @@ https://github.com/dotnet/emsdk 6fd14a46f7bc405f4ba53b1e691c76fdc6324b0b - + https://github.com/dotnet/msbuild - 19b03fa0ed956540e434a64171bc606d96bb812e + 7c8cc52b8c88ee13ed9f268d655e51c458cfe3e5 - + https://github.com/dotnet/msbuild - 19b03fa0ed956540e434a64171bc606d96bb812e + 7c8cc52b8c88ee13ed9f268d655e51c458cfe3e5 - + https://github.com/dotnet/msbuild - 19b03fa0ed956540e434a64171bc606d96bb812e + 7c8cc52b8c88ee13ed9f268d655e51c458cfe3e5 diff --git a/eng/Versions.props b/eng/Versions.props index 3172516559fb..3fe947104c87 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -123,7 +123,7 @@ - 17.8.37 + 17.8.38 $(MicrosoftBuildPackageVersion) - + @@ -22,6 +22,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7a163fee4a76..69d33655ec49 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -55,17 +55,17 @@ https://github.com/dotnet/emsdk 6fd14a46f7bc405f4ba53b1e691c76fdc6324b0b - + https://github.com/dotnet/msbuild - 7c8cc52b8c88ee13ed9f268d655e51c458cfe3e5 + 897f086a63516e991168b5e795269f9960969e05 - + https://github.com/dotnet/msbuild - 7c8cc52b8c88ee13ed9f268d655e51c458cfe3e5 + 897f086a63516e991168b5e795269f9960969e05 - + https://github.com/dotnet/msbuild - 7c8cc52b8c88ee13ed9f268d655e51c458cfe3e5 + 897f086a63516e991168b5e795269f9960969e05 diff --git a/eng/Versions.props b/eng/Versions.props index 3fe947104c87..c25792250fd8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -123,7 +123,7 @@ - 17.8.38 + 17.8.39 $(MicrosoftBuildPackageVersion) + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 27dcb796a46e..7f60dcce44bb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 3e8ada7bce86d4218abd6d9a40daadddabdf16c9 + 6e78cc9faf0ab29992b01007d71519655344e74c - + https://github.com/dotnet/arcade - 3e8ada7bce86d4218abd6d9a40daadddabdf16c9 + 6e78cc9faf0ab29992b01007d71519655344e74c - + https://github.com/dotnet/arcade - 3e8ada7bce86d4218abd6d9a40daadddabdf16c9 + 6e78cc9faf0ab29992b01007d71519655344e74c - + https://github.com/dotnet/arcade - 3e8ada7bce86d4218abd6d9a40daadddabdf16c9 + 6e78cc9faf0ab29992b01007d71519655344e74c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 5d7ed99143ff..e1aa7c9c9def 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25422.2 + 8.0.0-beta.25427.4 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -211,7 +211,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25422.2 + 8.0.0-beta.25427.4 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/templates-official/job/source-build.yml b/eng/common/templates-official/job/source-build.yml index 4217d6d8b148..7b9c58a90c5e 100644 --- a/eng/common/templates-official/job/source-build.yml +++ b/eng/common/templates-official/job/source-build.yml @@ -31,6 +31,9 @@ parameters: # container and pool. platform: {} + # Optional list of directories to ignore for component governance scans. + cgIgnoreDirectories: [] + # If set to true and running on a non-public project, # Internal blob storage locations will be enabled. # This is not enabled by default because many repositories do not need internal sources @@ -73,3 +76,4 @@ jobs: - template: /eng/common/templates-official/steps/source-build.yml parameters: platform: ${{ parameters.platform }} + cgIgnoreDirectories: ${{ parameters.cgIgnoreDirectories }} diff --git a/eng/common/templates-official/jobs/source-build.yml b/eng/common/templates-official/jobs/source-build.yml index b9247be1547b..21a346fbd6c7 100644 --- a/eng/common/templates-official/jobs/source-build.yml +++ b/eng/common/templates-official/jobs/source-build.yml @@ -21,6 +21,9 @@ parameters: # one job runs on 'defaultManagedPlatform'. platforms: [] + # Optional list of directories to ignore for component governance scans. + cgIgnoreDirectories: [] + # If set to true and running on a non-public project, # Internal nuget and blob storage locations will be enabled. # This is not enabled by default because many repositories do not need internal sources @@ -44,6 +47,7 @@ jobs: parameters: jobNamePrefix: ${{ parameters.jobNamePrefix }} platform: ${{ platform }} + cgIgnoreDirectories: ${{ parameters.cgIgnoreDirectories }} enableInternalSources: ${{ parameters.enableInternalSources }} - ${{ if eq(length(parameters.platforms), 0) }}: @@ -51,4 +55,5 @@ jobs: parameters: jobNamePrefix: ${{ parameters.jobNamePrefix }} platform: ${{ parameters.defaultManagedPlatform }} + cgIgnoreDirectories: ${{ parameters.cgIgnoreDirectories }} enableInternalSources: ${{ parameters.enableInternalSources }} diff --git a/eng/common/templates-official/steps/source-build.yml b/eng/common/templates-official/steps/source-build.yml index a69631446da2..b63043da4b9f 100644 --- a/eng/common/templates-official/steps/source-build.yml +++ b/eng/common/templates-official/steps/source-build.yml @@ -12,6 +12,9 @@ parameters: # the usage of the properties on this object is split between the 'job' and 'steps' templates. platform: {} + # Optional list of directories to ignore for component governance scans. + cgIgnoreDirectories: [] + steps: # Build. Keep it self-contained for simple reusability. (No source-build-specific job variables.) - script: | @@ -126,4 +129,7 @@ steps: - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection (Exclude upstream cache) inputs: - ignoreDirectories: '$(System.DefaultWorkingDirectory)/artifacts/source-build/self/src/artifacts/obj/source-built-upstream-cache' + ${{ if eq(length(parameters.cgIgnoreDirectories), 0) }}: + ignoreDirectories: '$(System.DefaultWorkingDirectory)/artifacts/source-build/self/src/artifacts/obj/source-built-upstream-cache' + ${{ else }}: + ignoreDirectories: ${{ join(',', parameters.cgIgnoreDirectories) }} diff --git a/eng/common/templates/job/source-build.yml b/eng/common/templates/job/source-build.yml index c48f95d93d91..97021335cfc4 100644 --- a/eng/common/templates/job/source-build.yml +++ b/eng/common/templates/job/source-build.yml @@ -31,6 +31,9 @@ parameters: # container and pool. platform: {} + # Optional list of directories to ignore for component governance scans. + cgIgnoreDirectories: [] + # If set to true and running on a non-public project, # Internal blob storage locations will be enabled. # This is not enabled by default because many repositories do not need internal sources @@ -72,3 +75,4 @@ jobs: - template: /eng/common/templates/steps/source-build.yml parameters: platform: ${{ parameters.platform }} + cgIgnoreDirectories: ${{ parameters.cgIgnoreDirectories }} diff --git a/eng/common/templates/jobs/source-build.yml b/eng/common/templates/jobs/source-build.yml index 3ec997108107..4dde599add97 100644 --- a/eng/common/templates/jobs/source-build.yml +++ b/eng/common/templates/jobs/source-build.yml @@ -21,6 +21,9 @@ parameters: # one job runs on 'defaultManagedPlatform'. platforms: [] + # Optional list of directories to ignore for component governance scans. + cgIgnoreDirectories: [] + # If set to true and running on a non-public project, # Internal nuget and blob storage locations will be enabled. # This is not enabled by default because many repositories do not need internal sources @@ -44,6 +47,7 @@ jobs: parameters: jobNamePrefix: ${{ parameters.jobNamePrefix }} platform: ${{ platform }} + cgIgnoreDirectories: ${{ parameters.cgIgnoreDirectories }} enableInternalSources: ${{ parameters.enableInternalSources }} - ${{ if eq(length(parameters.platforms), 0) }}: @@ -51,4 +55,5 @@ jobs: parameters: jobNamePrefix: ${{ parameters.jobNamePrefix }} platform: ${{ parameters.defaultManagedPlatform }} + cgIgnoreDirectories: ${{ parameters.cgIgnoreDirectories }} enableInternalSources: ${{ parameters.enableInternalSources }} diff --git a/eng/common/templates/steps/source-build.yml b/eng/common/templates/steps/source-build.yml index 4fb5643e5ded..ae06b26ea373 100644 --- a/eng/common/templates/steps/source-build.yml +++ b/eng/common/templates/steps/source-build.yml @@ -12,6 +12,9 @@ parameters: # the usage of the properties on this object is split between the 'job' and 'steps' templates. platform: {} + # Optional list of directories to ignore for component governance scans. + cgIgnoreDirectories: [] + steps: # Build. Keep it self-contained for simple reusability. (No source-build-specific job variables.) - script: | @@ -126,4 +129,7 @@ steps: - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection (Exclude upstream cache) inputs: - ignoreDirectories: '$(System.DefaultWorkingDirectory)/artifacts/source-build/self/src/artifacts/obj/source-built-upstream-cache' + ${{ if eq(length(parameters.cgIgnoreDirectories), 0) }}: + ignoreDirectories: '$(System.DefaultWorkingDirectory)/artifacts/source-build/self/src/artifacts/obj/source-built-upstream-cache' + ${{ else }}: + ignoreDirectories: ${{ join(',', parameters.cgIgnoreDirectories) }} diff --git a/global.json b/global.json index 1ee151ac29b8..79de562355a1 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25422.2", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25422.2" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25427.4", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25427.4" } } From 7584ef4680e1bd780cb7ae50038b0ab87b81ee74 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 29 Aug 2025 02:02:34 +0000 Subject: [PATCH 028/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20250828.6 Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25414.2 -> To Version 8.0.0-alpha.1.25428.6 --- NuGet.config | 5 +++++ eng/Version.Details.xml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/NuGet.config b/NuGet.config index b0995c27f77d..e7546f0f491e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,6 +22,11 @@ + + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0d43b66d2853..8c7210e0b931 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - 4f43a405d713b6e9b2963ebbac4850eae1804982 + 0b4984f8ee945e02a39ef0f72dc9f7ceab65c14f From 432b3754ba86c4757745fbb5ca5d79a5ff921ce4 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 2 Sep 2025 09:37:17 -0700 Subject: [PATCH 029/392] Update branding to 8.0.121 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 5294d65bc2d7..7647aab4a81f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,7 +11,7 @@ - 8.0.120 + 8.0.121 true release From 5748f4552b94a1f0863327d40f594b3985677a20 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 3 Sep 2025 02:30:42 +0000 Subject: [PATCH 030/392] Update dependencies from https://github.com/dotnet/templating build 20250902.1 Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks From Version 8.0.120-servicing.25417.1 -> To Version 8.0.121-servicing.25452.1 --- NuGet.config | 2 +- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/NuGet.config b/NuGet.config index 1b9c2dccf67b..2ad0b8a2b070 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9b8d73228efb..c81c5f59e1c1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/templating - e55677bc9e9afb72f91f589e7b003f1cee440880 + e9c44061069ca042fb07e425793829239536629f - + https://github.com/dotnet/templating - e55677bc9e9afb72f91f589e7b003f1cee440880 + e9c44061069ca042fb07e425793829239536629f - + https://github.com/dotnet/templating - e55677bc9e9afb72f91f589e7b003f1cee440880 + e9c44061069ca042fb07e425793829239536629f diff --git a/eng/Versions.props b/eng/Versions.props index b03874dad0e4..922fffac1089 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -139,13 +139,13 @@ - 8.0.120 + 8.0.121 $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.120-servicing.25424.1 + 8.0.121-servicing.25452.1 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 2cd666fac5d9d644bbf11cc17133d604eee7b824 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 3 Sep 2025 03:33:54 +0000 Subject: [PATCH 031/392] Update dependencies from https://github.com/dotnet/templating build 20250902.8 Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks From Version 8.0.120-servicing.25417.1 -> To Version 8.0.121-servicing.25452.8 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index 2ad0b8a2b070..5dae3f0475cc 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c81c5f59e1c1..2b72dc6f7515 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - e9c44061069ca042fb07e425793829239536629f + 7185913b59f4be55584aa2f67d5764f0d5b84569 - + https://github.com/dotnet/templating - e9c44061069ca042fb07e425793829239536629f + 7185913b59f4be55584aa2f67d5764f0d5b84569 - + https://github.com/dotnet/templating - e9c44061069ca042fb07e425793829239536629f + 7185913b59f4be55584aa2f67d5764f0d5b84569 diff --git a/eng/Versions.props b/eng/Versions.props index 922fffac1089..c5ef7bdf8252 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -145,7 +145,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.121-servicing.25452.1 + 8.0.121-servicing.25452.8 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 9e55186b1c755fc0ee2ad6d69000e410cca98c4c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 6 Sep 2025 02:02:44 +0000 Subject: [PATCH 032/392] Update dependencies from https://github.com/dotnet/arcade build 20250905.3 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25415.2 -> To Version 8.0.0-beta.25455.3 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7f60dcce44bb..ce0596317129 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 6e78cc9faf0ab29992b01007d71519655344e74c + 09625cb3b98ebe646a63dfea19a0c0127e88459a - + https://github.com/dotnet/arcade - 6e78cc9faf0ab29992b01007d71519655344e74c + 09625cb3b98ebe646a63dfea19a0c0127e88459a - + https://github.com/dotnet/arcade - 6e78cc9faf0ab29992b01007d71519655344e74c + 09625cb3b98ebe646a63dfea19a0c0127e88459a - + https://github.com/dotnet/arcade - 6e78cc9faf0ab29992b01007d71519655344e74c + 09625cb3b98ebe646a63dfea19a0c0127e88459a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index e1aa7c9c9def..6bf7544f1ac1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25427.4 + 8.0.0-beta.25455.3 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -211,7 +211,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25427.4 + 8.0.0-beta.25455.3 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 79de562355a1..08607d5d0dc2 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25427.4", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25427.4" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25455.3", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25455.3" } } From 1437c9685b3ea96361dab6e7d6e6c438bc8d36d1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 9 Sep 2025 14:56:43 +0000 Subject: [PATCH 033/392] Update dependencies from https://github.com/dotnet/msbuild build 20250908.3 Microsoft.SourceBuild.Intermediate.msbuild , Microsoft.Build , Microsoft.Build.Localization From Version 17.8.36-servicing-25411-03 -> To Version 17.8.42-servicing-25458-03 --- NuGet.config | 3 ++- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/NuGet.config b/NuGet.config index ebe960f95c94..58e1ee4e6306 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -22,6 +22,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 69d33655ec49..00d964dc02ae 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -55,17 +55,17 @@ https://github.com/dotnet/emsdk 6fd14a46f7bc405f4ba53b1e691c76fdc6324b0b - + https://github.com/dotnet/msbuild - 897f086a63516e991168b5e795269f9960969e05 + fda44ee81fc258f85338d98ac3f6064df9963a3c - + https://github.com/dotnet/msbuild - 897f086a63516e991168b5e795269f9960969e05 + fda44ee81fc258f85338d98ac3f6064df9963a3c - + https://github.com/dotnet/msbuild - 897f086a63516e991168b5e795269f9960969e05 + fda44ee81fc258f85338d98ac3f6064df9963a3c diff --git a/eng/Versions.props b/eng/Versions.props index 8a1548bdeb25..1442f2862ea5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -123,7 +123,7 @@ - 17.8.39 + 17.8.42 $(MicrosoftBuildPackageVersion) - - - - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e59018fc14dc..83ebf0c6df4d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 09625cb3b98ebe646a63dfea19a0c0127e88459a + 958612453c58fd32328461580b19ce5ecf4aedd2 - + https://github.com/dotnet/arcade - 09625cb3b98ebe646a63dfea19a0c0127e88459a + 958612453c58fd32328461580b19ce5ecf4aedd2 - + https://github.com/dotnet/arcade - 09625cb3b98ebe646a63dfea19a0c0127e88459a + 958612453c58fd32328461580b19ce5ecf4aedd2 - + https://github.com/dotnet/arcade - 09625cb3b98ebe646a63dfea19a0c0127e88459a + 958612453c58fd32328461580b19ce5ecf4aedd2 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 9a3e2eb34062..6e0e3d901f68 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25455.3 + 8.0.0-beta.25461.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25455.3 + 8.0.0-beta.25461.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 08607d5d0dc2..f6d3f7a5d730 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "tools": { - "dotnet": "8.0.119", + "dotnet": "8.0.120", "runtimes": { "dotnet": [ "$(VSRedistCommonNetCoreSharedFrameworkx6480PackageVersion)" @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25455.3", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25455.3" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25461.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25461.1" } } From 6083f565ade556e15e1fdfc2b22eb58f11060978 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 12 Sep 2025 03:31:42 +0000 Subject: [PATCH 036/392] Update dependencies from https://github.com/dotnet/templating build 20250911.6 Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks From Version 8.0.120-servicing.25417.1 -> To Version 8.0.121-servicing.25461.6 --- NuGet.config | 8 +------- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 13 deletions(-) diff --git a/NuGet.config b/NuGet.config index 73aff266f463..8f643c6f4709 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,13 +21,7 @@ - - - - - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a28e84a32273..9d90daab988a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 7185913b59f4be55584aa2f67d5764f0d5b84569 + aec1fc4fc8f851fc125f0567237e08f42aded6ea - + https://github.com/dotnet/templating - 7185913b59f4be55584aa2f67d5764f0d5b84569 + aec1fc4fc8f851fc125f0567237e08f42aded6ea - + https://github.com/dotnet/templating - 7185913b59f4be55584aa2f67d5764f0d5b84569 + aec1fc4fc8f851fc125f0567237e08f42aded6ea diff --git a/eng/Versions.props b/eng/Versions.props index cf6c054be64e..c3b94808870f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -145,7 +145,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.121-servicing.25452.8 + 8.0.121-servicing.25461.6 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 5785c6de746f987e8a2f6e1f8c04e1e7432a75f7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 13 Sep 2025 02:03:09 +0000 Subject: [PATCH 037/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20250912.3 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25428.6 -> To Version 8.0.0-alpha.1.25462.3 --- eng/Version.Details.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 014a4772f749..675e6320835d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - 0b4984f8ee945e02a39ef0f72dc9f7ceab65c14f + 55cc6bb942c12203e42ddb58f72cf5dbf1173eac From 03622f36a32114b15c6beeebb43ab3c5781941e3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 13 Sep 2025 02:03:36 +0000 Subject: [PATCH 038/392] Update dependencies from https://github.com/dotnet/arcade build 20250912.5 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25415.2 -> To Version 8.0.0-beta.25462.5 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- .../job/publish-build-assets.yml | 9 ++++++++- eng/common/templates-official/jobs/jobs.yml | 2 ++ .../templates/job/publish-build-assets.yml | 9 ++++++++- eng/common/templates/jobs/jobs.yml | 2 ++ global.json | 4 ++-- 7 files changed, 32 insertions(+), 14 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 316983f68cf3..ae5c90955e23 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + dc4d6c8c4c747fd66c63126fc933615fc69ebe9b - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + dc4d6c8c4c747fd66c63126fc933615fc69ebe9b - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + dc4d6c8c4c747fd66c63126fc933615fc69ebe9b - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + dc4d6c8c4c747fd66c63126fc933615fc69ebe9b https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index dd974208c932..22d6a43a0428 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25461.1 + 8.0.0-beta.25462.5 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -211,7 +211,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25461.1 + 8.0.0-beta.25462.5 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/templates-official/job/publish-build-assets.yml b/eng/common/templates-official/job/publish-build-assets.yml index 7a320e9bab20..a99d79df863c 100644 --- a/eng/common/templates-official/job/publish-build-assets.yml +++ b/eng/common/templates-official/job/publish-build-assets.yml @@ -32,6 +32,8 @@ parameters: repositoryAlias: self + officialBuildId: '' + jobs: - job: Asset_Registry_Publish @@ -52,6 +54,11 @@ jobs: value: false - ${{ if eq(parameters.publishAssetsImmediately, 'true') }}: - template: /eng/common/templates-official/post-build/common-variables.yml + - name: OfficialBuildId + ${{ if ne(parameters.officialBuildId, '') }}: + value: ${{ parameters.officialBuildId }} + ${{ else }}: + value: $(Build.BuildNumber) pool: # We don't use the collection uri here because it might vary (.visualstudio.com vs. dev.azure.com) @@ -93,7 +100,7 @@ jobs: /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' /p:MaestroApiEndpoint=https://maestro.dot.net /p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }} - /p:OfficialBuildId=$(Build.BuildNumber) + /p:OfficialBuildId=$(OfficialBuildId) condition: ${{ parameters.condition }} continueOnError: ${{ parameters.continueOnError }} diff --git a/eng/common/templates-official/jobs/jobs.yml b/eng/common/templates-official/jobs/jobs.yml index 803a95aacf4e..03aa64e1741f 100644 --- a/eng/common/templates-official/jobs/jobs.yml +++ b/eng/common/templates-official/jobs/jobs.yml @@ -41,6 +41,7 @@ parameters: enableSourceIndex: false sourceIndexParams: {} repositoryAlias: self + officialBuildId: '' # Internal resources (telemetry, microbuild) can only be accessed from non-public projects, # and some (Microbuild) should only be applied to non-PR cases for internal builds. @@ -97,3 +98,4 @@ jobs: artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} signingValidationAdditionalParameters: ${{ parameters.signingValidationAdditionalParameters }} repositoryAlias: ${{ parameters.repositoryAlias }} + officialBuildId: ${{ parameters.officialBuildId }} diff --git a/eng/common/templates/job/publish-build-assets.yml b/eng/common/templates/job/publish-build-assets.yml index 2956d8117f73..1fcdcc9adc34 100644 --- a/eng/common/templates/job/publish-build-assets.yml +++ b/eng/common/templates/job/publish-build-assets.yml @@ -32,6 +32,8 @@ parameters: repositoryAlias: self + officialBuildId: '' + jobs: - job: Asset_Registry_Publish @@ -52,6 +54,11 @@ jobs: value: false - ${{ if eq(parameters.publishAssetsImmediately, 'true') }}: - template: /eng/common/templates/post-build/common-variables.yml + - name: OfficialBuildId + ${{ if ne(parameters.officialBuildId, '') }}: + value: ${{ parameters.officialBuildId }} + ${{ else }}: + value: $(Build.BuildNumber) pool: # We don't use the collection uri here because it might vary (.visualstudio.com vs. dev.azure.com) @@ -91,7 +98,7 @@ jobs: /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' /p:MaestroApiEndpoint=https://maestro.dot.net /p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }} - /p:OfficialBuildId=$(Build.BuildNumber) + /p:OfficialBuildId=$(OfficialBuildId) condition: ${{ parameters.condition }} continueOnError: ${{ parameters.continueOnError }} diff --git a/eng/common/templates/jobs/jobs.yml b/eng/common/templates/jobs/jobs.yml index 34387a8c7acd..7eafc256758f 100644 --- a/eng/common/templates/jobs/jobs.yml +++ b/eng/common/templates/jobs/jobs.yml @@ -41,6 +41,7 @@ parameters: enableSourceIndex: false sourceIndexParams: {} repositoryAlias: self + officialBuildId: '' # Internal resources (telemetry, microbuild) can only be accessed from non-public projects, # and some (Microbuild) should only be applied to non-PR cases for internal builds. @@ -97,3 +98,4 @@ jobs: artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} signingValidationAdditionalParameters: ${{ parameters.signingValidationAdditionalParameters }} repositoryAlias: ${{ parameters.repositoryAlias }} + officialBuildId: ${{ parameters.officialBuildId }} diff --git a/global.json b/global.json index f6d3f7a5d730..fa2de8cfdc1e 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25461.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25461.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25462.5", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25462.5" } } From 36ad234294ee42f3c18d20fe596afae25da4ba5f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 13 Sep 2025 02:04:08 +0000 Subject: [PATCH 039/392] Update dependencies from https://github.com/dotnet/templating build 20250911.12 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.318-servicing.25457.6 -> To Version 8.0.318-servicing.25461.12 Microsoft.TemplateEngine.Abstractions From Version 8.0.318 -> To Version 8.0.318 --- NuGet.config | 8 +------- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 13 deletions(-) diff --git a/NuGet.config b/NuGet.config index 73763665117f..c4c8e19dc41a 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,13 +22,7 @@ - - - - - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6628e4583742..281f706dc261 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - f00904569b801dfadb41e24ad5ea2ea1760ac1e4 + 3822635473bdd8298355a0821c806141a6fe5787 - + https://github.com/dotnet/templating - f00904569b801dfadb41e24ad5ea2ea1760ac1e4 + 3822635473bdd8298355a0821c806141a6fe5787 - + https://github.com/dotnet/templating - f00904569b801dfadb41e24ad5ea2ea1760ac1e4 + 3822635473bdd8298355a0821c806141a6fe5787 diff --git a/eng/Versions.props b/eng/Versions.props index f863747d8404..d120a6d75962 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -149,7 +149,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.318-servicing.25457.6 + 8.0.318-servicing.25461.12 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 1a3830f250f3b30f0fa58e8dbf034cbb47bc552a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 13 Sep 2025 02:04:22 +0000 Subject: [PATCH 040/392] Update dependencies from https://github.com/dotnet/arcade build 20250912.5 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25455.3 -> To Version 8.0.0-beta.25462.5 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- .../job/publish-build-assets.yml | 9 ++++++++- eng/common/templates-official/jobs/jobs.yml | 2 ++ .../templates/job/publish-build-assets.yml | 9 ++++++++- eng/common/templates/jobs/jobs.yml | 2 ++ global.json | 4 ++-- 7 files changed, 32 insertions(+), 14 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 83ebf0c6df4d..7dd3b0d2cee9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + dc4d6c8c4c747fd66c63126fc933615fc69ebe9b - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + dc4d6c8c4c747fd66c63126fc933615fc69ebe9b - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + dc4d6c8c4c747fd66c63126fc933615fc69ebe9b - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + dc4d6c8c4c747fd66c63126fc933615fc69ebe9b https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 6e0e3d901f68..aa667465a1c5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25461.1 + 8.0.0-beta.25462.5 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25461.1 + 8.0.0-beta.25462.5 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/templates-official/job/publish-build-assets.yml b/eng/common/templates-official/job/publish-build-assets.yml index 7a320e9bab20..a99d79df863c 100644 --- a/eng/common/templates-official/job/publish-build-assets.yml +++ b/eng/common/templates-official/job/publish-build-assets.yml @@ -32,6 +32,8 @@ parameters: repositoryAlias: self + officialBuildId: '' + jobs: - job: Asset_Registry_Publish @@ -52,6 +54,11 @@ jobs: value: false - ${{ if eq(parameters.publishAssetsImmediately, 'true') }}: - template: /eng/common/templates-official/post-build/common-variables.yml + - name: OfficialBuildId + ${{ if ne(parameters.officialBuildId, '') }}: + value: ${{ parameters.officialBuildId }} + ${{ else }}: + value: $(Build.BuildNumber) pool: # We don't use the collection uri here because it might vary (.visualstudio.com vs. dev.azure.com) @@ -93,7 +100,7 @@ jobs: /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' /p:MaestroApiEndpoint=https://maestro.dot.net /p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }} - /p:OfficialBuildId=$(Build.BuildNumber) + /p:OfficialBuildId=$(OfficialBuildId) condition: ${{ parameters.condition }} continueOnError: ${{ parameters.continueOnError }} diff --git a/eng/common/templates-official/jobs/jobs.yml b/eng/common/templates-official/jobs/jobs.yml index 803a95aacf4e..03aa64e1741f 100644 --- a/eng/common/templates-official/jobs/jobs.yml +++ b/eng/common/templates-official/jobs/jobs.yml @@ -41,6 +41,7 @@ parameters: enableSourceIndex: false sourceIndexParams: {} repositoryAlias: self + officialBuildId: '' # Internal resources (telemetry, microbuild) can only be accessed from non-public projects, # and some (Microbuild) should only be applied to non-PR cases for internal builds. @@ -97,3 +98,4 @@ jobs: artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} signingValidationAdditionalParameters: ${{ parameters.signingValidationAdditionalParameters }} repositoryAlias: ${{ parameters.repositoryAlias }} + officialBuildId: ${{ parameters.officialBuildId }} diff --git a/eng/common/templates/job/publish-build-assets.yml b/eng/common/templates/job/publish-build-assets.yml index 2956d8117f73..1fcdcc9adc34 100644 --- a/eng/common/templates/job/publish-build-assets.yml +++ b/eng/common/templates/job/publish-build-assets.yml @@ -32,6 +32,8 @@ parameters: repositoryAlias: self + officialBuildId: '' + jobs: - job: Asset_Registry_Publish @@ -52,6 +54,11 @@ jobs: value: false - ${{ if eq(parameters.publishAssetsImmediately, 'true') }}: - template: /eng/common/templates/post-build/common-variables.yml + - name: OfficialBuildId + ${{ if ne(parameters.officialBuildId, '') }}: + value: ${{ parameters.officialBuildId }} + ${{ else }}: + value: $(Build.BuildNumber) pool: # We don't use the collection uri here because it might vary (.visualstudio.com vs. dev.azure.com) @@ -91,7 +98,7 @@ jobs: /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' /p:MaestroApiEndpoint=https://maestro.dot.net /p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }} - /p:OfficialBuildId=$(Build.BuildNumber) + /p:OfficialBuildId=$(OfficialBuildId) condition: ${{ parameters.condition }} continueOnError: ${{ parameters.continueOnError }} diff --git a/eng/common/templates/jobs/jobs.yml b/eng/common/templates/jobs/jobs.yml index 34387a8c7acd..7eafc256758f 100644 --- a/eng/common/templates/jobs/jobs.yml +++ b/eng/common/templates/jobs/jobs.yml @@ -41,6 +41,7 @@ parameters: enableSourceIndex: false sourceIndexParams: {} repositoryAlias: self + officialBuildId: '' # Internal resources (telemetry, microbuild) can only be accessed from non-public projects, # and some (Microbuild) should only be applied to non-PR cases for internal builds. @@ -97,3 +98,4 @@ jobs: artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} signingValidationAdditionalParameters: ${{ parameters.signingValidationAdditionalParameters }} repositoryAlias: ${{ parameters.repositoryAlias }} + officialBuildId: ${{ parameters.officialBuildId }} diff --git a/global.json b/global.json index f6d3f7a5d730..fa2de8cfdc1e 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25461.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25461.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25462.5", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25462.5" } } From 8f220689c9a9e5f6f1f9cfa41a8e6bc0d386c76a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 14 Sep 2025 02:03:02 +0000 Subject: [PATCH 041/392] Update dependencies from https://github.com/dotnet/arcade build 20250912.6 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25415.2 -> To Version 8.0.0-beta.25462.6 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ae5c90955e23..2a36837a1ee6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - dc4d6c8c4c747fd66c63126fc933615fc69ebe9b + 1df8dfdfc8068e5180687a3079427b120de18eed - + https://github.com/dotnet/arcade - dc4d6c8c4c747fd66c63126fc933615fc69ebe9b + 1df8dfdfc8068e5180687a3079427b120de18eed - + https://github.com/dotnet/arcade - dc4d6c8c4c747fd66c63126fc933615fc69ebe9b + 1df8dfdfc8068e5180687a3079427b120de18eed - + https://github.com/dotnet/arcade - dc4d6c8c4c747fd66c63126fc933615fc69ebe9b + 1df8dfdfc8068e5180687a3079427b120de18eed https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 22d6a43a0428..3c9a7a309b62 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25462.5 + 8.0.0-beta.25462.6 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -211,7 +211,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25462.5 + 8.0.0-beta.25462.6 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index fa2de8cfdc1e..10c92944e75c 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25462.5", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25462.5" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25462.6", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25462.6" } } From 06ed1dbfa8b1e5c2abffe1919145d34841a9be61 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 14 Sep 2025 02:03:18 +0000 Subject: [PATCH 042/392] Update dependencies from https://github.com/dotnet/arcade build 20250912.6 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25455.3 -> To Version 8.0.0-beta.25462.6 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7dd3b0d2cee9..481de9ef5260 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - dc4d6c8c4c747fd66c63126fc933615fc69ebe9b + 1df8dfdfc8068e5180687a3079427b120de18eed - + https://github.com/dotnet/arcade - dc4d6c8c4c747fd66c63126fc933615fc69ebe9b + 1df8dfdfc8068e5180687a3079427b120de18eed - + https://github.com/dotnet/arcade - dc4d6c8c4c747fd66c63126fc933615fc69ebe9b + 1df8dfdfc8068e5180687a3079427b120de18eed - + https://github.com/dotnet/arcade - dc4d6c8c4c747fd66c63126fc933615fc69ebe9b + 1df8dfdfc8068e5180687a3079427b120de18eed https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index aa667465a1c5..de6c44a3249e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25462.5 + 8.0.0-beta.25462.6 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25462.5 + 8.0.0-beta.25462.6 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index fa2de8cfdc1e..10c92944e75c 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25462.5", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25462.5" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25462.6", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25462.6" } } From 7c66d5d42df671922b483dcdb96053ec4d94a145 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 15 Sep 2025 03:32:21 +0000 Subject: [PATCH 043/392] Update dependencies from https://github.com/dotnet/templating build 20250914.2 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.121-servicing.25461.6 -> To Version 8.0.121-servicing.25464.2 Microsoft.TemplateEngine.Abstractions From Version 8.0.121 -> To Version 8.0.121 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index 8f643c6f4709..5c3ae07a6bf7 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 014a4772f749..ba6e61058520 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - aec1fc4fc8f851fc125f0567237e08f42aded6ea + e8835a8c78c8a490cf53c30a3ecb44634693b898 - + https://github.com/dotnet/templating - aec1fc4fc8f851fc125f0567237e08f42aded6ea + e8835a8c78c8a490cf53c30a3ecb44634693b898 - + https://github.com/dotnet/templating - aec1fc4fc8f851fc125f0567237e08f42aded6ea + e8835a8c78c8a490cf53c30a3ecb44634693b898 diff --git a/eng/Versions.props b/eng/Versions.props index c3b94808870f..52b93a16ac6f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -145,7 +145,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.121-servicing.25461.6 + 8.0.121-servicing.25464.2 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From e9337728868ba819ab75312bed7a95835c1642d9 Mon Sep 17 00:00:00 2001 From: Michael Yanni Date: Mon, 15 Sep 2025 10:30:07 -0700 Subject: [PATCH 044/392] Added nowarn for NETSDK1138. --- .../Microsoft.DotNet.ApiCompat.Tool.csproj | 2 ++ .../Microsoft.DotNet.GenAPI.Tool.csproj | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/ApiCompat/Microsoft.DotNet.ApiCompat.Tool/Microsoft.DotNet.ApiCompat.Tool.csproj b/src/ApiCompat/Microsoft.DotNet.ApiCompat.Tool/Microsoft.DotNet.ApiCompat.Tool.csproj index a8775a32bd72..4b3195a0ac2d 100644 --- a/src/ApiCompat/Microsoft.DotNet.ApiCompat.Tool/Microsoft.DotNet.ApiCompat.Tool.csproj +++ b/src/ApiCompat/Microsoft.DotNet.ApiCompat.Tool/Microsoft.DotNet.ApiCompat.Tool.csproj @@ -7,6 +7,8 @@ enable Open true + + $(NoWarn);NETSDK1138 true true diff --git a/src/GenAPI/Microsoft.DotNet.GenAPI.Tool/Microsoft.DotNet.GenAPI.Tool.csproj b/src/GenAPI/Microsoft.DotNet.GenAPI.Tool/Microsoft.DotNet.GenAPI.Tool.csproj index abc87d57ecc5..809f9d6bc423 100644 --- a/src/GenAPI/Microsoft.DotNet.GenAPI.Tool/Microsoft.DotNet.GenAPI.Tool.csproj +++ b/src/GenAPI/Microsoft.DotNet.GenAPI.Tool/Microsoft.DotNet.GenAPI.Tool.csproj @@ -7,6 +7,8 @@ enable Open true + + $(NoWarn);NETSDK1138 true true From eae6731911617b8442511e5caf88f624ef705b93 Mon Sep 17 00:00:00 2001 From: Chet Husk Date: Mon, 15 Sep 2025 13:28:26 -0500 Subject: [PATCH 045/392] [8.0.1xx] detect .NET 10 RID-specific tools and provide a more actionable error (#50399) --- .../ToolConfigurationDeserializer.cs | 21 +++++++++++++------ .../CreateNewImageTests.cs | 8 +++---- .../DockerRegistryTests.cs | 4 ++-- .../DockerTestsCollection.cs | 4 +++- .../EndToEndTests.cs | 12 +++++------ 5 files changed, 30 insertions(+), 19 deletions(-) diff --git a/src/Cli/dotnet/ToolPackage/ToolConfigurationDeserializer.cs b/src/Cli/dotnet/ToolPackage/ToolConfigurationDeserializer.cs index 6f6b0274a4ac..acf397e6b5ed 100644 --- a/src/Cli/dotnet/ToolPackage/ToolConfigurationDeserializer.cs +++ b/src/Cli/dotnet/ToolPackage/ToolConfigurationDeserializer.cs @@ -52,15 +52,24 @@ public static ToolConfiguration Deserialize(string pathToXml) throw new ToolConfigurationException(CommonLocalizableStrings.ToolSettingsMoreThanOneCommand); } - if (dotNetCliTool.Commands[0].Runner != "dotnet") + // if there is no runner, this could be an entirely different _kind_ of tool. + if (string.IsNullOrWhiteSpace(dotNetCliTool.Commands[0].Runner)) { - throw new ToolConfigurationException( - string.Format( - CommonLocalizableStrings.ToolSettingsUnsupportedRunner, - dotNetCliTool.Commands[0].Name, - dotNetCliTool.Commands[0].Runner)); + if (warnings.Count != 0) + { + throw new ToolConfigurationException(warnings[0]); + } } + if (dotNetCliTool.Commands[0].Runner != "dotnet") + { + throw new ToolConfigurationException( + string.Format( + CommonLocalizableStrings.ToolSettingsUnsupportedRunner, + dotNetCliTool.Commands[0].Name, + dotNetCliTool.Commands[0].Runner)); + } + return new ToolConfiguration( dotNetCliTool.Commands[0].Name, dotNetCliTool.Commands[0].EntryPoint, diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CreateNewImageTests.cs b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CreateNewImageTests.cs index d79db49d7020..c5a2e230a2af 100644 --- a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CreateNewImageTests.cs +++ b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CreateNewImageTests.cs @@ -20,7 +20,7 @@ public CreateNewImageTests(ITestOutputHelper testOutput) _testOutput = testOutput; } - [DockerAvailableFact] + [DockerAvailableFact(Skip = "https://github.com/dotnet/sdk/issues/49300")] public void CreateNewImage_Baseline() { DirectoryInfo newProjectDir = new(GetTestDirectoryName()); @@ -69,7 +69,7 @@ private static ImageConfig GetImageConfigFromTask(CreateNewImage task) { return new(task.GeneratedContainerConfiguration); } - [DockerAvailableFact] + [DockerAvailableFact(Skip = "https://github.com/dotnet/sdk/issues/49300")] public void ParseContainerProperties_EndToEnd() { DirectoryInfo newProjectDir = new(GetTestDirectoryName()); @@ -132,7 +132,7 @@ public void ParseContainerProperties_EndToEnd() /// /// Creates a console app that outputs the environment variable added to the image. /// - [DockerAvailableFact] + [DockerAvailableFact(Skip = "https://github.com/dotnet/sdk/issues/49300")] public void Tasks_EndToEnd_With_EnvironmentVariable_Validation() { DirectoryInfo newProjectDir = new(GetTestDirectoryName()); @@ -215,7 +215,7 @@ public void Tasks_EndToEnd_With_EnvironmentVariable_Validation() .And.HaveStdOut("Foo"); } - [DockerAvailableFact] + [DockerAvailableFact(Skip = "https://github.com/dotnet/sdk/issues/49300")] public async System.Threading.Tasks.Task CreateNewImage_RootlessBaseImage() { const string RootlessBase ="dotnet/rootlessbase"; diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryTests.cs b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryTests.cs index c1e9a19d5a4f..a0f90d4e4aac 100644 --- a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryTests.cs +++ b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryTests.cs @@ -17,7 +17,7 @@ public DockerRegistryTests(ITestOutputHelper testOutput) _loggerFactory = new TestLoggerFactory(testOutput); } - [DockerAvailableFact] + [DockerAvailableFact(Skip = "https://github.com/dotnet/sdk/issues/49300")] public async Task GetFromRegistry() { var loggerFactory = new TestLoggerFactory(_testOutput); @@ -37,7 +37,7 @@ public async Task GetFromRegistry() Assert.NotNull(downloadedImage); } - [DockerAvailableFact] + [DockerAvailableFact(Skip = "https://github.com/dotnet/sdk/issues/49300")] public async Task WriteToPrivateBasicRegistry() { ILogger logger = _loggerFactory.CreateLogger(nameof(WriteToPrivateBasicRegistry)); diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerTestsCollection.cs b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerTestsCollection.cs index 9b3a6e25327c..90d188183a78 100644 --- a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerTestsCollection.cs +++ b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerTestsCollection.cs @@ -5,7 +5,9 @@ namespace Microsoft.NET.Build.Containers.IntegrationTests; [CollectionDefinition("Docker tests")] #pragma warning disable CA1711 // Identifiers should not have incorrect suffix -public class DockerTestsCollection : ICollectionFixture +// TODO: skipped due to docker infra instability - need to use new ACR. +// See https://github.com/dotnet/sdk/issues/49300 +public class DockerTestsCollection // : ICollectionFixture #pragma warning restore CA1711 // Identifiers should not have incorrect suffix { // This class has no code, and is never created. Its purpose is simply diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/EndToEndTests.cs b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/EndToEndTests.cs index 8f733366eed8..867c9a88e9cf 100644 --- a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/EndToEndTests.cs +++ b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/EndToEndTests.cs @@ -38,7 +38,7 @@ public void Dispose() _loggerFactory.Dispose(); } - [DockerAvailableFact] + [DockerAvailableFact(Skip = "https://github.com/dotnet/sdk/issues/49300")] public async Task ApiEndToEndWithRegistryPushAndPull() { ILogger logger = _loggerFactory.CreateLogger(nameof(ApiEndToEndWithRegistryPushAndPull)); @@ -85,7 +85,7 @@ public async Task ApiEndToEndWithRegistryPushAndPull() } } - [DockerAvailableFact] + [DockerAvailableFact(Skip = "https://github.com/dotnet/sdk/issues/49300")] public async Task ApiEndToEndWithLocalLoad() { ILogger logger = _loggerFactory.CreateLogger(nameof(ApiEndToEndWithLocalLoad)); @@ -126,7 +126,7 @@ public async Task ApiEndToEndWithLocalLoad() } } - [DockerAvailableFact] + [DockerAvailableFact(Skip = "https://github.com/dotnet/sdk/issues/49300")] public async Task ApiEndToEndWithArchiveWritingAndLoad() { ILogger logger = _loggerFactory.CreateLogger(nameof(ApiEndToEndWithArchiveWritingAndLoad)); @@ -210,7 +210,7 @@ private string BuildLocalApp([CallerMemberName] string testName = "TestName", st } - [DockerAvailableTheory()] + [DockerAvailableTheory(Skip = "https://github.com/dotnet/sdk/issues/49300")] [InlineData("webapi", false)] [InlineData("webapi", true)] [InlineData("worker", false)] @@ -386,7 +386,7 @@ public async Task EndToEnd_NoAPI_ProjectType(string projectType, bool addPackage privateNuGetAssets.Delete(true); } - [DockerAvailableFact] + [DockerAvailableFact(Skip = "https://github.com/dotnet/sdk/issues/49300")] public void EndToEnd_NoAPI_Console() { DirectoryInfo newProjectDir = new DirectoryInfo(Path.Combine(TestSettings.TestArtifactsDirectory, "CreateNewImageTest")); @@ -473,7 +473,7 @@ public void EndToEnd_NoAPI_Console() [DockerSupportsArchInlineData("linux/386", "linux-x86", "/app", Skip = "There's no apphost for linux-x86 so we can't execute self-contained, and there's no .NET runtime base image for linux-x86 so we can't execute framework-dependent.")] [DockerSupportsArchInlineData("windows/amd64", "win-x64", "C:\\app")] [DockerSupportsArchInlineData("linux/amd64", "linux-x64", "/app")] - [DockerAvailableTheory] + [DockerAvailableTheory(Skip = "https://github.com/dotnet/sdk/issues/49300")] public async Task CanPackageForAllSupportedContainerRIDs(string dockerPlatform, string rid, string workingDir) { ILogger logger = _loggerFactory.CreateLogger(nameof(CanPackageForAllSupportedContainerRIDs)); From 839242206491d44e4a612490378d1e99a70e8bd7 Mon Sep 17 00:00:00 2001 From: Michael Yanni Date: Mon, 15 Sep 2025 15:55:57 -0700 Subject: [PATCH 046/392] Added nowarn for NETSDK1138. --- .../Microsoft.DotNet.ApiCompat.Tool.csproj | 2 ++ .../Microsoft.DotNet.GenAPI.Tool.csproj | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/ApiCompat/Microsoft.DotNet.ApiCompat.Tool/Microsoft.DotNet.ApiCompat.Tool.csproj b/src/ApiCompat/Microsoft.DotNet.ApiCompat.Tool/Microsoft.DotNet.ApiCompat.Tool.csproj index a8775a32bd72..4b3195a0ac2d 100644 --- a/src/ApiCompat/Microsoft.DotNet.ApiCompat.Tool/Microsoft.DotNet.ApiCompat.Tool.csproj +++ b/src/ApiCompat/Microsoft.DotNet.ApiCompat.Tool/Microsoft.DotNet.ApiCompat.Tool.csproj @@ -7,6 +7,8 @@ enable Open true + + $(NoWarn);NETSDK1138 true true diff --git a/src/GenAPI/Microsoft.DotNet.GenAPI.Tool/Microsoft.DotNet.GenAPI.Tool.csproj b/src/GenAPI/Microsoft.DotNet.GenAPI.Tool/Microsoft.DotNet.GenAPI.Tool.csproj index abc87d57ecc5..809f9d6bc423 100644 --- a/src/GenAPI/Microsoft.DotNet.GenAPI.Tool/Microsoft.DotNet.GenAPI.Tool.csproj +++ b/src/GenAPI/Microsoft.DotNet.GenAPI.Tool/Microsoft.DotNet.GenAPI.Tool.csproj @@ -7,6 +7,8 @@ enable Open true + + $(NoWarn);NETSDK1138 true true From 58c888fa289efaded71b999500ab5a0a6f0d68fb Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 16 Sep 2025 02:02:50 +0000 Subject: [PATCH 047/392] Update dependencies from https://github.com/dotnet/templating build 20250914.11 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.318-servicing.25457.6 -> To Version 8.0.318-servicing.25464.11 Microsoft.TemplateEngine.Abstractions From Version 8.0.318 -> To Version 8.0.318 --- NuGet.config | 9 +-------- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 14 deletions(-) diff --git a/NuGet.config b/NuGet.config index f94729eefa5e..fe28c7414422 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,6 @@ - @@ -14,7 +13,6 @@ - @@ -22,13 +20,11 @@ - - + - @@ -55,7 +51,6 @@ - @@ -65,10 +60,8 @@ - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2ef638b8cf2a..18023439cf54 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 3822635473bdd8298355a0821c806141a6fe5787 + 4f7a7c5e80fa77499265e11179868b94284ef7d2 - + https://github.com/dotnet/templating - 3822635473bdd8298355a0821c806141a6fe5787 + 4f7a7c5e80fa77499265e11179868b94284ef7d2 - + https://github.com/dotnet/templating - 3822635473bdd8298355a0821c806141a6fe5787 + 4f7a7c5e80fa77499265e11179868b94284ef7d2 diff --git a/eng/Versions.props b/eng/Versions.props index 37c3e91f7f1f..493844569c7b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -149,7 +149,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.318-servicing.25461.12 + 8.0.318-servicing.25464.11 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 15921efbf657b50cd729f72a31517334302468ec Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 16 Sep 2025 02:02:50 +0000 Subject: [PATCH 048/392] Update dependencies from https://github.com/dotnet/arcade build 20250915.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25415.2 -> To Version 8.0.0-beta.25465.1 --- NuGet.config | 7 ------- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 4 files changed, 12 insertions(+), 19 deletions(-) diff --git a/NuGet.config b/NuGet.config index c5086efc36ee..5c3ae07a6bf7 100644 --- a/NuGet.config +++ b/NuGet.config @@ -3,7 +3,6 @@ - @@ -13,7 +12,6 @@ - @@ -21,13 +19,11 @@ - - @@ -52,7 +48,6 @@ - @@ -60,10 +55,8 @@ - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ac0c33ae5983..d76a638f1704 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 1df8dfdfc8068e5180687a3079427b120de18eed + 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af - + https://github.com/dotnet/arcade - 1df8dfdfc8068e5180687a3079427b120de18eed + 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af - + https://github.com/dotnet/arcade - 1df8dfdfc8068e5180687a3079427b120de18eed + 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af - + https://github.com/dotnet/arcade - 1df8dfdfc8068e5180687a3079427b120de18eed + 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 3b6fd7ededd5..17e07e5c9e82 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25462.6 + 8.0.0-beta.25465.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -211,7 +211,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25462.6 + 8.0.0-beta.25465.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 10c92944e75c..bac07ff8aacc 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25462.6", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25462.6" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25465.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25465.1" } } From ac7db8ba4993663dd7f443590a5aacb2a1ed651b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 16 Sep 2025 02:03:11 +0000 Subject: [PATCH 049/392] Update dependencies from https://github.com/dotnet/arcade build 20250915.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25455.3 -> To Version 8.0.0-beta.25465.1 --- NuGet.config | 7 ------- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 4 files changed, 12 insertions(+), 19 deletions(-) diff --git a/NuGet.config b/NuGet.config index 7f7cb458e0c8..e7f26a4b751b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,6 @@ - @@ -14,7 +13,6 @@ - @@ -22,13 +20,11 @@ - - @@ -55,7 +51,6 @@ - @@ -65,10 +60,8 @@ - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 011f78bea892..a1143a0d790f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 1df8dfdfc8068e5180687a3079427b120de18eed + 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af - + https://github.com/dotnet/arcade - 1df8dfdfc8068e5180687a3079427b120de18eed + 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af - + https://github.com/dotnet/arcade - 1df8dfdfc8068e5180687a3079427b120de18eed + 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af - + https://github.com/dotnet/arcade - 1df8dfdfc8068e5180687a3079427b120de18eed + 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index dc45182e5ed0..3d4ac0f5ed42 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25462.6 + 8.0.0-beta.25465.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25462.6 + 8.0.0-beta.25465.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 10c92944e75c..bac07ff8aacc 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25462.6", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25462.6" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25465.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25465.1" } } From a08d3c907306d8938d8e884b26b9d6b27510e121 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 16 Sep 2025 04:35:23 +0000 Subject: [PATCH 050/392] Update dependencies from https://github.com/dotnet/templating build 20250915.4 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.121-servicing.25464.2 -> To Version 8.0.121-servicing.25465.4 Microsoft.TemplateEngine.Abstractions From Version 8.0.121 -> To Version 8.0.121 --- NuGet.config | 9 +-------- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 14 deletions(-) diff --git a/NuGet.config b/NuGet.config index c5086efc36ee..f5da45e1229e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -3,7 +3,6 @@ - @@ -13,7 +12,6 @@ - @@ -21,13 +19,11 @@ - - + - @@ -52,7 +48,6 @@ - @@ -60,10 +55,8 @@ - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e5e8165a234b..8d945913e22c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - e8835a8c78c8a490cf53c30a3ecb44634693b898 + 9354fb2b29c39630906bc54e2014399b2553dcba - + https://github.com/dotnet/templating - e8835a8c78c8a490cf53c30a3ecb44634693b898 + 9354fb2b29c39630906bc54e2014399b2553dcba - + https://github.com/dotnet/templating - e8835a8c78c8a490cf53c30a3ecb44634693b898 + 9354fb2b29c39630906bc54e2014399b2553dcba diff --git a/eng/Versions.props b/eng/Versions.props index f5b09fc9123d..63fc55c146dd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -145,7 +145,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.121-servicing.25464.2 + 8.0.121-servicing.25465.4 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 78ddb427f397df0d9ac2607e7e071c0322b2454c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 17 Sep 2025 02:02:39 +0000 Subject: [PATCH 051/392] Update dependencies from https://github.com/dotnet/templating build 20250915.8 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.318-servicing.25464.11 -> To Version 8.0.318-servicing.25465.8 Microsoft.TemplateEngine.Abstractions From Version 8.0.318 -> To Version 8.0.318 --- NuGet.config | 3 +-- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index a60874c07461..af0bd64e6009 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,8 +22,7 @@ - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a723b3f16fe8..c37982313264 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 4f7a7c5e80fa77499265e11179868b94284ef7d2 + ded6af19f7c7476879e280df3407ce1d16b2f997 - + https://github.com/dotnet/templating - 4f7a7c5e80fa77499265e11179868b94284ef7d2 + ded6af19f7c7476879e280df3407ce1d16b2f997 - + https://github.com/dotnet/templating - 4f7a7c5e80fa77499265e11179868b94284ef7d2 + ded6af19f7c7476879e280df3407ce1d16b2f997 diff --git a/eng/Versions.props b/eng/Versions.props index cba3a2ef7597..fd0f1c2d2452 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -149,7 +149,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.318-servicing.25464.11 + 8.0.318-servicing.25465.8 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 5dc51d250776710f83794c8355e2c6c6b7cbdfbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Provazn=C3=ADk?= Date: Wed, 17 Sep 2025 14:58:22 +0200 Subject: [PATCH 052/392] update msbuild --- NuGet.config | 4 ++-- eng/Version.Details.xml | 18 +++++++++--------- eng/Versions.props | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/NuGet.config b/NuGet.config index a60874c07461..4e7ff7099a2e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -15,7 +15,7 @@ - + @@ -23,7 +23,6 @@ - @@ -36,6 +35,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a723b3f16fe8..ab092f175090 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -55,17 +55,17 @@ https://github.com/dotnet/emsdk 222749b48ecb0fe78f236ca9c61f6ff3b09cdc99 - - https://github.com/dotnet/msbuild - e71ee2d1051ea6c9c254d4be138fbb36be653fd8 + + https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted + aa888d3214e5adb503c48c3bad2bfc6c5aff638a - - https://github.com/dotnet/msbuild - e71ee2d1051ea6c9c254d4be138fbb36be653fd8 + + https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted + aa888d3214e5adb503c48c3bad2bfc6c5aff638a - - https://github.com/dotnet/msbuild - e71ee2d1051ea6c9c254d4be138fbb36be653fd8 + + https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted + aa888d3214e5adb503c48c3bad2bfc6c5aff638a diff --git a/eng/Versions.props b/eng/Versions.props index cba3a2ef7597..fc302e64ce36 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -126,7 +126,7 @@ - 17.10.45 + 17.10.46 $(MicrosoftBuildPackageVersion) - + @@ -32,6 +32,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 21a4a9a4bc6d..a8d5f9e36873 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -55,17 +55,17 @@ https://github.com/dotnet/emsdk 222749b48ecb0fe78f236ca9c61f6ff3b09cdc99 - - https://github.com/dotnet/msbuild - fda44ee81fc258f85338d98ac3f6064df9963a3c + + https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted + f0cbb13971c30ad15a3f252a8d0171898a01ec11 - - https://github.com/dotnet/msbuild - fda44ee81fc258f85338d98ac3f6064df9963a3c + + https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted + f0cbb13971c30ad15a3f252a8d0171898a01ec11 - - https://github.com/dotnet/msbuild - fda44ee81fc258f85338d98ac3f6064df9963a3c + + https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted + f0cbb13971c30ad15a3f252a8d0171898a01ec11 diff --git a/eng/Versions.props b/eng/Versions.props index 683cdee3039f..70373b69764a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -123,7 +123,7 @@ - 17.8.42 + 17.8.43 $(MicrosoftBuildPackageVersion) + From f9215b3581adef3fb1e55a9b301348aefc456502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Provazn=C3=ADk?= Date: Thu, 18 Sep 2025 18:32:57 +0200 Subject: [PATCH 055/392] disablepackagesource internaltransport feed --- NuGet.config | 1 + 1 file changed, 1 insertion(+) diff --git a/NuGet.config b/NuGet.config index bbac45a5f642..b8c79dd23d93 100644 --- a/NuGet.config +++ b/NuGet.config @@ -55,6 +55,7 @@ + From ce6e44c1d9261facfdd2f936477894719b69e312 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 19 Sep 2025 02:04:34 +0000 Subject: [PATCH 056/392] Update dependencies from https://github.com/dotnet/arcade build 20250918.2 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25465.1 -> To Version 8.0.0-beta.25468.2 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 21a4a9a4bc6d..5dd1596b94bb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af + 583effe8471a0e08a6422d0d2799cb99e9a3d38f - + https://github.com/dotnet/arcade - 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af + 583effe8471a0e08a6422d0d2799cb99e9a3d38f - + https://github.com/dotnet/arcade - 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af + 583effe8471a0e08a6422d0d2799cb99e9a3d38f - + https://github.com/dotnet/arcade - 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af + 583effe8471a0e08a6422d0d2799cb99e9a3d38f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 683cdee3039f..244fe6ea17f8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25465.1 + 8.0.0-beta.25468.2 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -211,7 +211,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25465.1 + 8.0.0-beta.25468.2 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index bac07ff8aacc..1dc34182c654 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25465.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25465.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25468.2", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25468.2" } } From 6a40be993853c991a7b26ef46b685a669a251c77 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 19 Sep 2025 02:04:52 +0000 Subject: [PATCH 057/392] Update dependencies from https://github.com/dotnet/arcade build 20250918.2 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25465.1 -> To Version 8.0.0-beta.25468.2 --- NuGet.config | 1 - eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 4 files changed, 12 insertions(+), 13 deletions(-) diff --git a/NuGet.config b/NuGet.config index a60874c07461..fe28c7414422 100644 --- a/NuGet.config +++ b/NuGet.config @@ -23,7 +23,6 @@ - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a723b3f16fe8..24300162cbd8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af + 583effe8471a0e08a6422d0d2799cb99e9a3d38f - + https://github.com/dotnet/arcade - 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af + 583effe8471a0e08a6422d0d2799cb99e9a3d38f - + https://github.com/dotnet/arcade - 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af + 583effe8471a0e08a6422d0d2799cb99e9a3d38f - + https://github.com/dotnet/arcade - 4bd1c6c93b5a3b8bc864d2863469c3f2e489d0af + 583effe8471a0e08a6422d0d2799cb99e9a3d38f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index cba3a2ef7597..cf55fc27cae3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25465.1 + 8.0.0-beta.25468.2 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25465.1 + 8.0.0-beta.25468.2 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index bac07ff8aacc..1dc34182c654 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25465.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25465.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25468.2", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25468.2" } } From b438c580ebb538be1d81cfdd28b28a198beb185a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 19 Sep 2025 05:37:24 +0000 Subject: [PATCH 058/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250918.19 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.20-servicing.25419.14 -> To Version 8.0.21-servicing.25468.19 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.20 -> To Version 8.0.21 Dependency coherency updates On relative base path root Microsoft.NET.Workload.Emscripten.Current.Manifest-8.0.100 From Version 8.0.20 -> To Version 8.0.21 (parent: Microsoft.NETCore.App.Runtime.win-x64) --- NuGet.config | 4 +++- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 14 +++++++------- 3 files changed, 30 insertions(+), 28 deletions(-) diff --git a/NuGet.config b/NuGet.config index a60874c07461..97eae5103e41 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,6 +4,7 @@ + @@ -20,10 +21,10 @@ + - @@ -61,6 +62,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a723b3f16fe8..da8d6805b6e3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -14,46 +14,46 @@ 4f7a7c5e80fa77499265e11179868b94284ef7d2 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://github.com/dotnet/emsdk - 222749b48ecb0fe78f236ca9c61f6ff3b09cdc99 + ea366a7a40bc588c70ef59376040130baf864c85 https://github.com/dotnet/msbuild @@ -200,9 +200,9 @@ https://github.com/microsoft/vstest c4d80397805bec06b354d20aeb1773e243c6add0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index cba3a2ef7597..7b58644b6dc9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -51,19 +51,19 @@ - 8.0.20 - 8.0.20-servicing.25419.14 - 8.0.20 + 8.0.21 + 8.0.21-servicing.25468.19 + 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 - 8.0.20 - 8.0.20-servicing.25419.14 + 8.0.21 + 8.0.21-servicing.25468.19 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 8.0.3 8.0.1 - 8.0.20 + 8.0.21 8.0.0 8.0.0 8.0.20 @@ -231,7 +231,7 @@ - 8.0.20 + 8.0.21 $(MicrosoftNETWorkloadEmscriptenCurrentManifest80100PackageVersion) 8.0.100$([System.Text.RegularExpressions.Regex]::Match($(EmscriptenWorkloadManifestVersion), `-rtm|-[A-z]*\.*\d*`)) From a62227cd8efa33375f1fa99f07525038e3e18e7d Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 19 Sep 2025 05:37:27 +0000 Subject: [PATCH 059/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250918.19 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.20-servicing.25419.14 -> To Version 8.0.21-servicing.25468.19 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.20 -> To Version 8.0.21 Dependency coherency updates On relative base path root Microsoft.NET.Workload.Emscripten.Current.Manifest-8.0.100 From Version 8.0.20 -> To Version 8.0.21 (parent: Microsoft.NETCore.App.Runtime.win-x64) --- NuGet.config | 3 +++ eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 14 +++++++------- 3 files changed, 30 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index f5da45e1229e..45efdb68637a 100644 --- a/NuGet.config +++ b/NuGet.config @@ -3,6 +3,7 @@ + @@ -19,6 +20,7 @@ + @@ -55,6 +57,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 21a4a9a4bc6d..842444389c9c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -14,46 +14,46 @@ 9354fb2b29c39630906bc54e2014399b2553dcba - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 - + https://github.com/dotnet/emsdk - 222749b48ecb0fe78f236ca9c61f6ff3b09cdc99 + ea366a7a40bc588c70ef59376040130baf864c85 https://github.com/dotnet/msbuild @@ -200,9 +200,9 @@ https://github.com/microsoft/vstest aa59400b11e1aeee2e8af48928dbd48748a8bef9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 574100b692e71fa3426931adf4c1ba42e4ee5213 + 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 683cdee3039f..2c2c5f457ec2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,18 +49,18 @@ - 8.0.20 - 8.0.20-servicing.25419.14 - 8.0.20 + 8.0.21 + 8.0.21-servicing.25468.19 + 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 - 8.0.20 - 8.0.20-servicing.25419.14 + 8.0.21 + 8.0.21-servicing.25468.19 8.0.0 8.0.1 8.0.3 8.0.1 - 8.0.20 + 8.0.21 8.0.0 8.0.0 8.0.20 @@ -227,7 +227,7 @@ - 8.0.20 + 8.0.21 $(MicrosoftNETWorkloadEmscriptenCurrentManifest80100PackageVersion) 8.0.100$([System.Text.RegularExpressions.Regex]::Match($(EmscriptenWorkloadManifestVersion), `-rtm|-[A-z]*\.*\d*`)) From a94ae06958bbe477bfe0f3c475ff077f3c38af78 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 19 Sep 2025 10:04:19 +0000 Subject: [PATCH 060/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250919.1 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.20-servicing.25420.2 -> To Version 8.0.21-servicing.25469.1 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.20 -> To Version 8.0.21 --- NuGet.config | 2 ++ eng/Version.Details.xml | 72 ++++++++++++++++++++--------------------- eng/Versions.props | 16 ++++----- 3 files changed, 46 insertions(+), 44 deletions(-) diff --git a/NuGet.config b/NuGet.config index 45efdb68637a..e082a29305f8 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,6 +13,7 @@ + @@ -50,6 +51,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 842444389c9c..5145d686329d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -248,50 +248,50 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-wpf 7b95ca673ef08b7325429a3b675184b815482564 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce https://github.com/dotnet/razor @@ -306,21 +306,21 @@ https://github.com/dotnet/razor 4c8bb4ff79523da1aa8ffbf2834ede5118f73d60 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce https://github.com/dotnet/xdt @@ -437,9 +437,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 2c2c5f457ec2..af291d975403 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -63,7 +63,7 @@ 8.0.21 8.0.0 8.0.0 - 8.0.20 + 8.0.21 8.0.0 8.0.0 8.0.0 @@ -167,13 +167,13 @@ - 8.0.20 - 8.0.20-servicing.25420.2 - 8.0.20-servicing.25420.2 - 8.0.20-servicing.25420.2 - 8.0.20-servicing.25420.2 - 8.0.20-servicing.25420.2 - 8.0.20 + 8.0.21 + 8.0.21-servicing.25469.1 + 8.0.21-servicing.25469.1 + 8.0.21-servicing.25469.1 + 8.0.21-servicing.25469.1 + 8.0.21-servicing.25469.1 + 8.0.21 From ab317029a311d93c9fa2ec37f372b3e1fccb5a17 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 19 Sep 2025 10:04:25 +0000 Subject: [PATCH 061/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250919.1 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.20-servicing.25420.2 -> To Version 8.0.21-servicing.25469.1 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.20 -> To Version 8.0.21 --- NuGet.config | 2 ++ eng/Version.Details.xml | 72 ++++++++++++++++++++--------------------- eng/Versions.props | 16 ++++----- 3 files changed, 46 insertions(+), 44 deletions(-) diff --git a/NuGet.config b/NuGet.config index 97eae5103e41..1a70bc0b5e34 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,6 +14,7 @@ + @@ -53,6 +54,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index da8d6805b6e3..ca9487d0aec1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce https://github.com/nuget/nuget.client @@ -248,50 +248,50 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-wpf 7b95ca673ef08b7325429a3b675184b815482564 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce https://github.com/dotnet/razor @@ -306,21 +306,21 @@ https://github.com/dotnet/razor 09ca88197916e545aefea53f16ed1b266644cde9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce https://github.com/dotnet/xdt @@ -437,9 +437,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c78f4a816c0c6a978a801a05a31dce9013e099e2 + 6f477f8a100df7e94f98fb30b61f04648ab24bce https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 7b58644b6dc9..d47738321358 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -66,7 +66,7 @@ 8.0.21 8.0.0 8.0.0 - 8.0.20 + 8.0.21 8.0.0 8.0.0 8.0.0 @@ -171,13 +171,13 @@ - 8.0.20 - 8.0.20-servicing.25420.2 - 8.0.20-servicing.25420.2 - 8.0.20-servicing.25420.2 - 8.0.20-servicing.25420.2 - 8.0.20-servicing.25420.2 - 8.0.20 + 8.0.21 + 8.0.21-servicing.25469.1 + 8.0.21-servicing.25469.1 + 8.0.21-servicing.25469.1 + 8.0.21-servicing.25469.1 + 8.0.21-servicing.25469.1 + 8.0.21 From e66b70e1e57aec941da1ed6e9c9c44d0dfecfa13 Mon Sep 17 00:00:00 2001 From: Rainer Sigwald Date: Fri, 19 Sep 2025 15:40:43 +0000 Subject: [PATCH 062/392] Merged PR 53475: Avoid referencing stale MSBuild 17.7 Since VS 17.7 is long out of support, there's no benefit to continuing to reference it for .NET Framework build tasks, and updating to the patched 17.8 builds will avoid delivering unpatched copies of MSBuild assemblies AND referencing them in .deps.json files. The copies of the files that are found in the `containerize` folder are not actually needed and have been removed in most newer SDK branches, but this is a more targeted solution here. ---- #### AI description (iteration 1) #### PR Classification Build configuration update to avoid referencing a stale MSBuild version. #### PR Summary This PR updates build configuration to prevent using the outdated MSBuild 17.7, aligning references with the version shipped by the SDK. - `eng/Versions.props`: Updated the comment and configuration to disable the stale MSBuild reference due to Visual Studio 17.8 no longer being supported. - `src/Cli/Microsoft.DotNet.Cli.Utils/Microsoft.DotNet.Cli.Utils.csproj`: Simplified the MSBuild DLL path configuration to consistently utilize the latest version via `$(NetCurrent)`. --- Directory.Build.props | 7 ++----- eng/Versions.props | 7 +++++-- .../Microsoft.DotNet.Cli.Utils.csproj | 3 +-- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index fc5cbc439c2f..300a76ca225f 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -14,11 +14,8 @@ net8.0 $(SdkTargetFramework) - - net7.0 - - $(SdkTargetFramework) + + $(SdkTargetFramework) diff --git a/eng/Versions.props b/eng/Versions.props index 70373b69764a..3a4fcf107a77 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -128,8 +128,11 @@ - $([System.IO.File]::ReadAllText('$(RepoRoot)\src\Layout\redist\minimumMSBuildVersion').Trim()) + This avoids the need to juggle references to packages that have been updated in newer MSBuild. + + This is DISABLED now in 8.0.1xx, because the corresponding Visual Studio 17.8 is no longer in support, + so we can reference the same version as the SDK ships. + $([System.IO.File]::ReadAllText('$(RepoRoot)\src\Layout\redist\minimumMSBuildVersion').Trim()) --> $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) 17.8.43-servicing-25466-03 diff --git a/src/Cli/Microsoft.DotNet.Cli.Utils/Microsoft.DotNet.Cli.Utils.csproj b/src/Cli/Microsoft.DotNet.Cli.Utils/Microsoft.DotNet.Cli.Utils.csproj index 509c6a286d88..7e9cb6c6cc42 100644 --- a/src/Cli/Microsoft.DotNet.Cli.Utils/Microsoft.DotNet.Cli.Utils.csproj +++ b/src/Cli/Microsoft.DotNet.Cli.Utils/Microsoft.DotNet.Cli.Utils.csproj @@ -25,8 +25,7 @@ for Mac and other VS scenarios. During source-build, we only have access to the latest version, which targets NetCurrent. --> - $(PkgMicrosoft_Build_Runtime)\contentFiles\any\net7.0\MSBuild.dll - $(PkgMicrosoft_Build_Runtime)\contentFiles\any\$(NetCurrent)\MSBuild.dll + $(PkgMicrosoft_Build_Runtime)\contentFiles\any\$(NetCurrent)\MSBuild.dll From 403597048648b66fd55d93de80e3e45c137159fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Provazn=C3=ADk?= Date: Fri, 19 Sep 2025 18:14:14 +0200 Subject: [PATCH 063/392] overlay SDK Microsoft.Build assemblies in dotnet-format for version consistency --- .../redist/targets/GenerateLayout.targets | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/Layout/redist/targets/GenerateLayout.targets b/src/Layout/redist/targets/GenerateLayout.targets index eab01ef1445f..461a9ef073af 100644 --- a/src/Layout/redist/targets/GenerateLayout.targets +++ b/src/Layout/redist/targets/GenerateLayout.targets @@ -117,10 +117,27 @@ + + + + + + + + + + + + + Date: Fri, 19 Sep 2025 18:54:43 +0200 Subject: [PATCH 064/392] remove internal transport, it should be handled by scripts --- NuGet.config | 2 -- 1 file changed, 2 deletions(-) diff --git a/NuGet.config b/NuGet.config index b8c79dd23d93..76f63cd84d44 100644 --- a/NuGet.config +++ b/NuGet.config @@ -35,7 +35,6 @@ - @@ -55,7 +54,6 @@ - From e76e23a95852bdddafd5d55bac0a5297356cd64b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Provazn=C3=ADk?= Date: Fri, 19 Sep 2025 18:57:48 +0200 Subject: [PATCH 065/392] disable packagesource --- NuGet.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NuGet.config b/NuGet.config index 11c95c79e5b8..88892482eb2e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -32,7 +32,6 @@ - @@ -52,6 +51,7 @@ + From 89ad0a76a1fbf586a4ce305f83d605ae5b10d341 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 19 Sep 2025 19:10:11 +0000 Subject: [PATCH 066/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250919.8 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25468.19 -> To Version 8.0.21-servicing.25469.8 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index e082a29305f8..c67094f4cabe 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + @@ -59,7 +59,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5145d686329d..d3d31dfae957 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index af291d975403..8b8685f8ed17 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.21 - 8.0.21-servicing.25468.19 + 8.0.21-servicing.25469.8 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25468.19 + 8.0.21-servicing.25469.8 8.0.0 8.0.1 8.0.3 From 1d87acf00b32a10209e4505bd50b1ef6c5d5ae93 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 19 Sep 2025 19:10:18 +0000 Subject: [PATCH 067/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250919.8 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25468.19 -> To Version 8.0.21-servicing.25469.8 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 1a70bc0b5e34..ae6993f88f91 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ca9487d0aec1..b38382947a88 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 718de65ca7a2c15d27ebc5ce8d3b9fbc97d5dfb8 + 2913e6f9d1553be07d0f82f05f617b52a77078e5 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index d47738321358..084bec021afc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.21 - 8.0.21-servicing.25468.19 + 8.0.21-servicing.25469.8 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25468.19 + 8.0.21-servicing.25469.8 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From a5ed4b4f5d9070e230f4ad0681618990e4f5438b Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 19 Sep 2025 20:38:13 +0000 Subject: [PATCH 068/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250919.9 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.20-servicing.25420.2 -> To Version 8.0.21-servicing.25469.9 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.20 -> To Version 8.0.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index c67094f4cabe..2b7b11962904 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -51,7 +51,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d3d31dfae957..5759e93c909e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 8b8685f8ed17..454611acfa18 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -168,11 +168,11 @@ 8.0.21 - 8.0.21-servicing.25469.1 - 8.0.21-servicing.25469.1 - 8.0.21-servicing.25469.1 - 8.0.21-servicing.25469.1 - 8.0.21-servicing.25469.1 + 8.0.21-servicing.25469.9 + 8.0.21-servicing.25469.9 + 8.0.21-servicing.25469.9 + 8.0.21-servicing.25469.9 + 8.0.21-servicing.25469.9 8.0.21 From 6e9464ca953c38d6f97ffcbeb6257699061fde20 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 19 Sep 2025 20:38:19 +0000 Subject: [PATCH 069/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250919.9 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.20-servicing.25420.2 -> To Version 8.0.21-servicing.25469.9 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.20 -> To Version 8.0.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index ae6993f88f91..0bdacfcda1a0 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -54,7 +54,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b38382947a88..1ca3c6b1f471 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6f477f8a100df7e94f98fb30b61f04648ab24bce + 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 084bec021afc..90fb1c69bf62 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -172,11 +172,11 @@ 8.0.21 - 8.0.21-servicing.25469.1 - 8.0.21-servicing.25469.1 - 8.0.21-servicing.25469.1 - 8.0.21-servicing.25469.1 - 8.0.21-servicing.25469.1 + 8.0.21-servicing.25469.9 + 8.0.21-servicing.25469.9 + 8.0.21-servicing.25469.9 + 8.0.21-servicing.25469.9 + 8.0.21-servicing.25469.9 8.0.21 From 0f080d6521c88988cb107bc0301aab0111290889 Mon Sep 17 00:00:00 2001 From: Rainer Sigwald Date: Fri, 19 Sep 2025 16:56:16 -0500 Subject: [PATCH 070/392] Build against 17.10 MSBuild since earlier VSes are out of support --- eng/Versions.props | 12 +++++------- .../CapturingLogger.cs | 2 +- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index fc302e64ce36..a67d91f5a1d2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -33,9 +33,9 @@ 13.0.3 4.8.6 1.2.0-beta.435 - 7.0.0 + 8.0.0 4.0.0 - 7.0.0 + 8.0.1 8.0.0-beta.25465.1 7.0.0-preview.22423.2 8.0.0 @@ -128,11 +128,9 @@ 17.10.46 $(MicrosoftBuildPackageVersion) - - 17.8.29 + $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) 17.10.46-servicing-25466-04 diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CapturingLogger.cs b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CapturingLogger.cs index fbd26d787895..f23bd75b785a 100644 --- a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CapturingLogger.cs +++ b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CapturingLogger.cs @@ -8,7 +8,7 @@ namespace Microsoft.NET.Build.Containers.IntegrationTests; public class CapturingLogger : ILogger { public LoggerVerbosity Verbosity { get => LoggerVerbosity.Diagnostic; set { } } - public string Parameters { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } + public string? Parameters { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } private List _messages = new(); public IReadOnlyList Messages {get { return _messages; } } From cec2595311ffb95fe0dcfa4c6db28015f5af1ccf Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 19 Sep 2025 23:36:27 +0000 Subject: [PATCH 071/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250919.16 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25469.9 -> To Version 8.0.21-servicing.25469.16 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 6 ++--- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 36 insertions(+), 36 deletions(-) diff --git a/NuGet.config b/NuGet.config index ea8cba870edc..c5246a2c43e1 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -51,11 +51,11 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a7cad4f4e418..bf52b55fc25e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index bada01b103d1..ce0466b83228 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -171,11 +171,11 @@ 8.0.21 - 8.0.21-servicing.25469.9 - 8.0.21-servicing.25469.9 - 8.0.21-servicing.25469.9 - 8.0.21-servicing.25469.9 - 8.0.21-servicing.25469.9 + 8.0.21-servicing.25469.16 + 8.0.21-servicing.25469.16 + 8.0.21-servicing.25469.16 + 8.0.21-servicing.25469.16 + 8.0.21-servicing.25469.16 8.0.21 From c7ec3def59867b894bc8bbdd95525012114df681 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 19 Sep 2025 23:36:57 +0000 Subject: [PATCH 072/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250919.16 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25469.9 -> To Version 8.0.21-servicing.25469.16 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index fbcdb288876b..5cb848254135 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -54,7 +54,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9aa092c83efd..03efd36d620e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 22b4865a3edf5b3bc369507e39a72bae5c5e13f1 + 3aec0b0ecb12a837b3168130c7b9f00b7469d355 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 2acd7272afc3..c1f81f16b14d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -170,11 +170,11 @@ 8.0.21 - 8.0.21-servicing.25469.9 - 8.0.21-servicing.25469.9 - 8.0.21-servicing.25469.9 - 8.0.21-servicing.25469.9 - 8.0.21-servicing.25469.9 + 8.0.21-servicing.25469.16 + 8.0.21-servicing.25469.16 + 8.0.21-servicing.25469.16 + 8.0.21-servicing.25469.16 + 8.0.21-servicing.25469.16 8.0.21 From 17047ed5a60c45a8575d6711c9d3f059628cf862 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 20 Sep 2025 23:52:03 +0000 Subject: [PATCH 073/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250920.2 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.20 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.20-servicing.25421.3 -> To Version 8.0.21-servicing.25470.2 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.20-servicing.25420.2 -> To Version 8.0.21-servicing.25465.5 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 2 ++ eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 2 +- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index c5246a2c43e1..b20922f8186a 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,6 +27,7 @@ + @@ -63,6 +64,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bf52b55fc25e..c9b42484d6f1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -228,25 +228,25 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2540f0e77435ce41beaadc94cc0d10ac9981b5a7 + 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2540f0e77435ce41beaadc94cc0d10ac9981b5a7 + 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2540f0e77435ce41beaadc94cc0d10ac9981b5a7 + 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2540f0e77435ce41beaadc94cc0d10ac9981b5a7 + 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 7b95ca673ef08b7325429a3b675184b815482564 + e912353a4ce429ff5800121e4726667b4748cdf8 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index ce0466b83228..1fba656a7dd1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -186,7 +186,7 @@ - 8.0.20-servicing.25420.2 + 8.0.21-servicing.25465.5 From d3abd7e17ff838f44c36c82e4b19eaffe810cc63 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 20 Sep 2025 23:52:03 +0000 Subject: [PATCH 074/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250920.2 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.20 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.20-servicing.25421.3 -> To Version 8.0.21-servicing.25470.2 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.20-servicing.25420.2 -> To Version 8.0.21-servicing.25465.5 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 2 ++ eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 2 +- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 5cb848254135..1a73c78c8e88 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,6 +28,7 @@ + @@ -68,6 +69,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 03efd36d620e..b858e71ae026 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -228,25 +228,25 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2540f0e77435ce41beaadc94cc0d10ac9981b5a7 + 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2540f0e77435ce41beaadc94cc0d10ac9981b5a7 + 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2540f0e77435ce41beaadc94cc0d10ac9981b5a7 + 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2540f0e77435ce41beaadc94cc0d10ac9981b5a7 + 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 7b95ca673ef08b7325429a3b675184b815482564 + e912353a4ce429ff5800121e4726667b4748cdf8 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index c1f81f16b14d..5d472cc9d0e6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -185,7 +185,7 @@ - 8.0.20-servicing.25420.2 + 8.0.21-servicing.25465.5 From f9e32e4c5fd64b8fc47bd9416f572f43a2b1b3b8 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sun, 21 Sep 2025 00:11:29 +0000 Subject: [PATCH 075/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250920.4 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25469.8 -> To Version 8.0.21-servicing.25470.4 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index b20922f8186a..df6b6927f5fa 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c9b42484d6f1..dce63dad39db 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 1fba656a7dd1..12dd52cf4f32 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.21 - 8.0.21-servicing.25469.8 + 8.0.21-servicing.25470.4 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25469.8 + 8.0.21-servicing.25470.4 8.0.0 8.0.1 8.0.3 From 669fa9b119bd74e39357ad3327597e1871b54783 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sun, 21 Sep 2025 00:11:30 +0000 Subject: [PATCH 076/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250920.4 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25469.8 -> To Version 8.0.21-servicing.25470.4 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 1a73c78c8e88..0d012dbfa217 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b858e71ae026..39188af7d5e3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2913e6f9d1553be07d0f82f05f617b52a77078e5 + b092349f1acd302db5dcd17a21e8ea15ae0588c9 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 5d472cc9d0e6..07c1774683f3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.21 - 8.0.21-servicing.25469.8 + 8.0.21-servicing.25470.4 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25469.8 + 8.0.21-servicing.25470.4 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From 0ad723c2584036f7bf2767b91b34ad033406334c Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Mon, 22 Sep 2025 17:59:17 +0000 Subject: [PATCH 077/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250922.1 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.20 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.20-servicing.25421.3 -> To Version 8.0.21-servicing.25472.1 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.20-servicing.25420.2 -> To Version 8.0.21-servicing.25471.1 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index df6b6927f5fa..0c3a9dad8cc8 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index dce63dad39db..e4b6f929a397 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a + 38da98ceeb48f57da927e81e13bab6b385375fdf - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a + 38da98ceeb48f57da927e81e13bab6b385375fdf https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a + 38da98ceeb48f57da927e81e13bab6b385375fdf - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a + 38da98ceeb48f57da927e81e13bab6b385375fdf - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - e912353a4ce429ff5800121e4726667b4748cdf8 + e36d1e0b8833843b1c266159e9d01f46b2406d1c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 12dd52cf4f32..ae6d364b3dbf 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -186,7 +186,7 @@ - 8.0.21-servicing.25465.5 + 8.0.21-servicing.25471.1 From b8fe965b74d50911013d6d45b8b1b4962b54a366 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Mon, 22 Sep 2025 17:59:32 +0000 Subject: [PATCH 078/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250922.1 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.20 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.20-servicing.25421.3 -> To Version 8.0.21-servicing.25472.1 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.20-servicing.25420.2 -> To Version 8.0.21-servicing.25471.1 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0d012dbfa217..2bd1f10692db 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 39188af7d5e3..a27df3a530b5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a + 38da98ceeb48f57da927e81e13bab6b385375fdf - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a + 38da98ceeb48f57da927e81e13bab6b385375fdf https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a + 38da98ceeb48f57da927e81e13bab6b385375fdf - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 20574c2d4e49f4d8663f0ea4adbe66d72b4afe8a + 38da98ceeb48f57da927e81e13bab6b385375fdf - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - e912353a4ce429ff5800121e4726667b4748cdf8 + e36d1e0b8833843b1c266159e9d01f46b2406d1c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 07c1774683f3..3b74b7633008 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -185,7 +185,7 @@ - 8.0.21-servicing.25465.5 + 8.0.21-servicing.25471.1 From 701608410644c7c5719abe911894ac8e3427308f Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Mon, 22 Sep 2025 21:07:57 +0000 Subject: [PATCH 079/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250922.10 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25469.8 -> To Version 8.0.21-servicing.25472.10 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.21 Dependency coherency updates On relative base path root Microsoft.NET.Workload.Emscripten.Current.Manifest-8.0.100 From Version 8.0.21 -> To Version 8.0.21 (parent: Microsoft.NETCore.App.Runtime.win-x64) --- NuGet.config | 6 +++--- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 4 ++-- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/NuGet.config b/NuGet.config index 2bd1f10692db..02f6761a4715 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + @@ -22,7 +22,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a27df3a530b5..be853cf27754 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,11 +49,11 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 https://github.com/dotnet/emsdk - ea366a7a40bc588c70ef59376040130baf864c85 + 42532a7524749ad5d48d1820eaa7d4ab7e77faa6 https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 3b74b7633008..19058a00f374 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.21 - 8.0.21-servicing.25470.4 + 8.0.21-servicing.25472.10 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25470.4 + 8.0.21-servicing.25472.10 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From e643abe7b231a8bacef940a77f4e4af86852c368 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Mon, 22 Sep 2025 21:08:06 +0000 Subject: [PATCH 080/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250922.10 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25469.8 -> To Version 8.0.21-servicing.25472.10 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.21 Dependency coherency updates On relative base path root Microsoft.NET.Workload.Emscripten.Current.Manifest-8.0.100 From Version 8.0.21 -> To Version 8.0.21 (parent: Microsoft.NETCore.App.Runtime.win-x64) --- NuGet.config | 6 +++--- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 4 ++-- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0c3a9dad8cc8..a4546aca8283 100644 --- a/NuGet.config +++ b/NuGet.config @@ -3,7 +3,7 @@ - + @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e4b6f929a397..8dcf28b7eb72 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,11 +49,11 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 https://github.com/dotnet/emsdk - ea366a7a40bc588c70ef59376040130baf864c85 + 42532a7524749ad5d48d1820eaa7d4ab7e77faa6 https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b092349f1acd302db5dcd17a21e8ea15ae0588c9 + 96f3e0a71fc6287bc3b0912675662dd94e427c83 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index ae6d364b3dbf..1b7d77c2aa77 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.21 - 8.0.21-servicing.25470.4 + 8.0.21-servicing.25472.10 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25470.4 + 8.0.21-servicing.25472.10 8.0.0 8.0.1 8.0.3 From 59b719ddbd55377de7941c257b000021ed7364d6 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 23 Sep 2025 06:43:39 +0000 Subject: [PATCH 081/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250922.33 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25469.8 -> To Version 8.0.21-servicing.25472.33 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index a4546aca8283..13dc5bbda657 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8dcf28b7eb72..69d73e1f6c62 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 1b7d77c2aa77..2b3e810b9079 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.21 - 8.0.21-servicing.25472.10 + 8.0.21-servicing.25472.33 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25472.10 + 8.0.21-servicing.25472.33 8.0.0 8.0.1 8.0.3 From 138438a525a09c7d5e8d7ec7b8d2fe796e8e2c07 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 23 Sep 2025 06:43:40 +0000 Subject: [PATCH 082/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250922.33 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25469.8 -> To Version 8.0.21-servicing.25472.33 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 02f6761a4715..a9cfd398ab89 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index be853cf27754..35c42a3237e4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 96f3e0a71fc6287bc3b0912675662dd94e427c83 + cebe9450b034b8f9f2ea889c779728c820871089 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 19058a00f374..92e2773b596d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.21 - 8.0.21-servicing.25472.10 + 8.0.21-servicing.25472.33 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25472.10 + 8.0.21-servicing.25472.33 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From e322f3e07a8ea01d1914a155e2999afb99ca495a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 23 Sep 2025 19:44:29 +0000 Subject: [PATCH 083/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250923.1 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.20 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.20-servicing.25421.3 -> To Version 8.0.21-servicing.25473.1 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.20-servicing.25420.2 -> To Version 8.0.21-servicing.25473.3 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 13dc5bbda657..c37a1268051b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 69d73e1f6c62..b4632bd922eb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 38da98ceeb48f57da927e81e13bab6b385375fdf + cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 38da98ceeb48f57da927e81e13bab6b385375fdf + cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 38da98ceeb48f57da927e81e13bab6b385375fdf + cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 38da98ceeb48f57da927e81e13bab6b385375fdf + cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - e36d1e0b8833843b1c266159e9d01f46b2406d1c + 04fbc38459ad73f42483220a0d95443a52e6ccfa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 2b3e810b9079..fed2868025ec 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -186,7 +186,7 @@ - 8.0.21-servicing.25471.1 + 8.0.21-servicing.25473.3 From 91ec6087825da70515614f3bb386d1fe2e534220 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 23 Sep 2025 19:44:36 +0000 Subject: [PATCH 084/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250923.1 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.20 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.20-servicing.25421.3 -> To Version 8.0.21-servicing.25473.1 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.20-servicing.25420.2 -> To Version 8.0.21-servicing.25473.3 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index a9cfd398ab89..1c3f9a2eba46 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 35c42a3237e4..ca4ea70d0545 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 38da98ceeb48f57da927e81e13bab6b385375fdf + cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 38da98ceeb48f57da927e81e13bab6b385375fdf + cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 38da98ceeb48f57da927e81e13bab6b385375fdf + cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 38da98ceeb48f57da927e81e13bab6b385375fdf + cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - e36d1e0b8833843b1c266159e9d01f46b2406d1c + 04fbc38459ad73f42483220a0d95443a52e6ccfa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 92e2773b596d..3d6f3d3912a2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -185,7 +185,7 @@ - 8.0.21-servicing.25471.1 + 8.0.21-servicing.25473.3 From 13888fe4bd341dd0661f1ad88dcb56b59c236a9e Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 23 Sep 2025 20:37:22 +0000 Subject: [PATCH 085/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250923.4 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25469.9 -> To Version 8.0.21-servicing.25473.4 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index c37a1268051b..67f4e2085b44 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b4632bd922eb..985692e01327 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index fed2868025ec..bdbb3d28142a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -171,11 +171,11 @@ 8.0.21 - 8.0.21-servicing.25469.16 - 8.0.21-servicing.25469.16 - 8.0.21-servicing.25469.16 - 8.0.21-servicing.25469.16 - 8.0.21-servicing.25469.16 + 8.0.21-servicing.25473.4 + 8.0.21-servicing.25473.4 + 8.0.21-servicing.25473.4 + 8.0.21-servicing.25473.4 + 8.0.21-servicing.25473.4 8.0.21 From 1c45ecd29d782acfc9220d810319333ba264ded1 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 23 Sep 2025 20:37:23 +0000 Subject: [PATCH 086/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250923.4 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25469.9 -> To Version 8.0.21-servicing.25473.4 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 1c3f9a2eba46..111143fc6366 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ca4ea70d0545..0973e29e48e8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 3aec0b0ecb12a837b3168130c7b9f00b7469d355 + fb64877f32935198415507f4037f7e97891e46be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 3d6f3d3912a2..e8801ccdd80c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -170,11 +170,11 @@ 8.0.21 - 8.0.21-servicing.25469.16 - 8.0.21-servicing.25469.16 - 8.0.21-servicing.25469.16 - 8.0.21-servicing.25469.16 - 8.0.21-servicing.25469.16 + 8.0.21-servicing.25473.4 + 8.0.21-servicing.25473.4 + 8.0.21-servicing.25473.4 + 8.0.21-servicing.25473.4 + 8.0.21-servicing.25473.4 8.0.21 From fc3cf9eef5d0b5b2809ecd1cc3d204936b9d955b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 23 Sep 2025 21:32:04 +0000 Subject: [PATCH 087/392] Update dependencies from https://github.com/dotnet/arcade build 20250923.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25465.1 -> To Version 8.0.0-beta.25473.1 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5dd1596b94bb..b1afc7e278ac 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 583effe8471a0e08a6422d0d2799cb99e9a3d38f + ea77ace912db0e1cf28f199cb456b27fe311635e - + https://github.com/dotnet/arcade - 583effe8471a0e08a6422d0d2799cb99e9a3d38f + ea77ace912db0e1cf28f199cb456b27fe311635e - + https://github.com/dotnet/arcade - 583effe8471a0e08a6422d0d2799cb99e9a3d38f + ea77ace912db0e1cf28f199cb456b27fe311635e - + https://github.com/dotnet/arcade - 583effe8471a0e08a6422d0d2799cb99e9a3d38f + ea77ace912db0e1cf28f199cb456b27fe311635e https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 244fe6ea17f8..addfec2584c4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25468.2 + 8.0.0-beta.25473.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -211,7 +211,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25468.2 + 8.0.0-beta.25473.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 1dc34182c654..ab78721eca2c 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25468.2", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25468.2" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25473.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25473.1" } } From 8bbd1eedf69881629f5be444a0dd44a3867197da Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 23 Sep 2025 21:33:16 +0000 Subject: [PATCH 088/392] Update dependencies from https://github.com/dotnet/arcade build 20250923.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25465.1 -> To Version 8.0.0-beta.25473.1 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 24300162cbd8..435c03eac972 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 583effe8471a0e08a6422d0d2799cb99e9a3d38f + ea77ace912db0e1cf28f199cb456b27fe311635e - + https://github.com/dotnet/arcade - 583effe8471a0e08a6422d0d2799cb99e9a3d38f + ea77ace912db0e1cf28f199cb456b27fe311635e - + https://github.com/dotnet/arcade - 583effe8471a0e08a6422d0d2799cb99e9a3d38f + ea77ace912db0e1cf28f199cb456b27fe311635e - + https://github.com/dotnet/arcade - 583effe8471a0e08a6422d0d2799cb99e9a3d38f + ea77ace912db0e1cf28f199cb456b27fe311635e https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index cf55fc27cae3..e7626b92f1c0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25468.2 + 8.0.0-beta.25473.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25468.2 + 8.0.0-beta.25473.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 1dc34182c654..ab78721eca2c 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25468.2", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25468.2" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25473.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25473.1" } } From 758db066db2fa2c5f5206668dbbd54d91bac5fe2 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 24 Sep 2025 00:59:30 +0000 Subject: [PATCH 089/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250923.5 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.20 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.20-servicing.25421.3 -> To Version 8.0.21-servicing.25473.5 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 111143fc6366..a46261657bee 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0973e29e48e8..1d7a6dbc256b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,19 +230,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 + bd7fc99e4d73323dfec23b76704de99b12561a2e - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 + bd7fc99e4d73323dfec23b76704de99b12561a2e https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 + bd7fc99e4d73323dfec23b76704de99b12561a2e - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 + bd7fc99e4d73323dfec23b76704de99b12561a2e https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From 58de37f550dc5d421d6e9ea8d79d13c984059d0b Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 24 Sep 2025 00:59:30 +0000 Subject: [PATCH 090/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250923.5 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.20 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.20-servicing.25421.3 -> To Version 8.0.21-servicing.25473.5 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 67f4e2085b44..09a93b9c0f1d 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 985692e01327..44dff80d4664 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,19 +230,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 + bd7fc99e4d73323dfec23b76704de99b12561a2e - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 + bd7fc99e4d73323dfec23b76704de99b12561a2e https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 + bd7fc99e4d73323dfec23b76704de99b12561a2e - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cccd18c19f042b7c2f0b88c215c82caee8e9cdc9 + bd7fc99e4d73323dfec23b76704de99b12561a2e https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From 1d1df16e874e5158e3fb66024c8ed70b80bc1480 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 24 Sep 2025 08:05:31 +0000 Subject: [PATCH 091/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250923.21 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25469.8 -> To Version 8.0.21-servicing.25473.21 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index a46261657bee..6d52764fe906 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1d7a6dbc256b..777db4ed212a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index e8801ccdd80c..a9f3190f6549 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.21 - 8.0.21-servicing.25472.33 + 8.0.21-servicing.25473.21 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25472.33 + 8.0.21-servicing.25473.21 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From ad569cfa4871eb7620d5a5893248af6dd9d1f365 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 24 Sep 2025 08:05:41 +0000 Subject: [PATCH 092/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250923.21 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25469.8 -> To Version 8.0.21-servicing.25473.21 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 09a93b9c0f1d..967552b0a98c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 44dff80d4664..a6f56a31aa45 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cebe9450b034b8f9f2ea889c779728c820871089 + 1892887e28c6812653f864f30a621b190b83dd7c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index bdbb3d28142a..81ae31bbaa75 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.21 - 8.0.21-servicing.25472.33 + 8.0.21-servicing.25473.21 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25472.33 + 8.0.21-servicing.25473.21 8.0.0 8.0.1 8.0.3 From 5fe4e586b06b8b80e96ffb2c0a6e5f8596a6bd6e Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 24 Sep 2025 17:21:18 +0000 Subject: [PATCH 093/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250924.1 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.21 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25473.5 -> To Version 8.0.21-servicing.25474.1 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.21-servicing.25473.3 -> To Version 8.0.21-servicing.25473.9 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 967552b0a98c..45818df8761c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a6f56a31aa45..4774fed5db4a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - bd7fc99e4d73323dfec23b76704de99b12561a2e + a56d486fe71e972d6cd8ba47e4af98e3d0552669 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - bd7fc99e4d73323dfec23b76704de99b12561a2e + a56d486fe71e972d6cd8ba47e4af98e3d0552669 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - bd7fc99e4d73323dfec23b76704de99b12561a2e + a56d486fe71e972d6cd8ba47e4af98e3d0552669 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - bd7fc99e4d73323dfec23b76704de99b12561a2e + a56d486fe71e972d6cd8ba47e4af98e3d0552669 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 04fbc38459ad73f42483220a0d95443a52e6ccfa + 2dfa32c347c5377e5599885701cffbb36e5df555 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 81ae31bbaa75..973274975fc7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -186,7 +186,7 @@ - 8.0.21-servicing.25473.3 + 8.0.21-servicing.25473.9 From a42b69eac0ec83a3f6017d462a771fce26dbb51c Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 24 Sep 2025 17:21:18 +0000 Subject: [PATCH 094/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250924.1 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.21 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25473.5 -> To Version 8.0.21-servicing.25474.1 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.21-servicing.25473.3 -> To Version 8.0.21-servicing.25473.9 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 6d52764fe906..c490171528fe 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 777db4ed212a..3bdef0e44644 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - bd7fc99e4d73323dfec23b76704de99b12561a2e + a56d486fe71e972d6cd8ba47e4af98e3d0552669 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - bd7fc99e4d73323dfec23b76704de99b12561a2e + a56d486fe71e972d6cd8ba47e4af98e3d0552669 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - bd7fc99e4d73323dfec23b76704de99b12561a2e + a56d486fe71e972d6cd8ba47e4af98e3d0552669 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - bd7fc99e4d73323dfec23b76704de99b12561a2e + a56d486fe71e972d6cd8ba47e4af98e3d0552669 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 04fbc38459ad73f42483220a0d95443a52e6ccfa + 2dfa32c347c5377e5599885701cffbb36e5df555 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index a9f3190f6549..9bd8347693c5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -185,7 +185,7 @@ - 8.0.21-servicing.25473.3 + 8.0.21-servicing.25473.9 From f70c87720dd08344ac765bbab1be57f79c58ac31 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 24 Sep 2025 19:30:20 +0000 Subject: [PATCH 095/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250924.4 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.21 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25473.5 -> To Version 8.0.21-servicing.25474.4 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.21-servicing.25473.3 -> To Version 8.0.21-servicing.25474.4 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 45818df8761c..489eb49257bc 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4774fed5db4a..3755c89e71e0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - a56d486fe71e972d6cd8ba47e4af98e3d0552669 + 0794008c14ec52875b3bfccce63de08893a58d4e - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - a56d486fe71e972d6cd8ba47e4af98e3d0552669 + 0794008c14ec52875b3bfccce63de08893a58d4e https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - a56d486fe71e972d6cd8ba47e4af98e3d0552669 + 0794008c14ec52875b3bfccce63de08893a58d4e - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - a56d486fe71e972d6cd8ba47e4af98e3d0552669 + 0794008c14ec52875b3bfccce63de08893a58d4e - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 2dfa32c347c5377e5599885701cffbb36e5df555 + cd697274d6103a2e6a19ad9ed377b38cce321733 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 973274975fc7..4fe2699591cd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -186,7 +186,7 @@ - 8.0.21-servicing.25473.9 + 8.0.21-servicing.25474.4 From 8b0d0c606f5559dd0e9bc0389acf45769df1cac3 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 24 Sep 2025 19:30:21 +0000 Subject: [PATCH 096/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20250924.4 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.21 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25473.5 -> To Version 8.0.21-servicing.25474.4 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.21-servicing.25473.3 -> To Version 8.0.21-servicing.25474.4 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index c490171528fe..bb45709f5ea4 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3bdef0e44644..6faecc328627 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - a56d486fe71e972d6cd8ba47e4af98e3d0552669 + 0794008c14ec52875b3bfccce63de08893a58d4e - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - a56d486fe71e972d6cd8ba47e4af98e3d0552669 + 0794008c14ec52875b3bfccce63de08893a58d4e https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - a56d486fe71e972d6cd8ba47e4af98e3d0552669 + 0794008c14ec52875b3bfccce63de08893a58d4e - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - a56d486fe71e972d6cd8ba47e4af98e3d0552669 + 0794008c14ec52875b3bfccce63de08893a58d4e - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 2dfa32c347c5377e5599885701cffbb36e5df555 + cd697274d6103a2e6a19ad9ed377b38cce321733 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 9bd8347693c5..2fa72525343e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -185,7 +185,7 @@ - 8.0.21-servicing.25473.9 + 8.0.21-servicing.25474.4 From ccdc076866890f96a05de4534c2d333c8913cf7c Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 25 Sep 2025 00:25:13 +0000 Subject: [PATCH 097/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250924.11 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25473.4 -> To Version 8.0.21-servicing.25474.11 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index bb45709f5ea4..c365e7220631 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6faecc328627..bef5ab40b3c5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 2fa72525343e..2559176ced6f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -170,11 +170,11 @@ 8.0.21 - 8.0.21-servicing.25473.4 - 8.0.21-servicing.25473.4 - 8.0.21-servicing.25473.4 - 8.0.21-servicing.25473.4 - 8.0.21-servicing.25473.4 + 8.0.21-servicing.25474.11 + 8.0.21-servicing.25474.11 + 8.0.21-servicing.25474.11 + 8.0.21-servicing.25474.11 + 8.0.21-servicing.25474.11 8.0.21 From de49f0c25bf9534ed869166aabb37c00a8d1259c Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 25 Sep 2025 00:25:13 +0000 Subject: [PATCH 098/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20250924.11 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25473.4 -> To Version 8.0.21-servicing.25474.11 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 489eb49257bc..7ac615bbcc0b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3755c89e71e0..5109e24162dd 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - fb64877f32935198415507f4037f7e97891e46be + d22808de86d348a80e2944341f39bbb7953e652c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 4fe2699591cd..33bb46fbb110 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -171,11 +171,11 @@ 8.0.21 - 8.0.21-servicing.25473.4 - 8.0.21-servicing.25473.4 - 8.0.21-servicing.25473.4 - 8.0.21-servicing.25473.4 - 8.0.21-servicing.25473.4 + 8.0.21-servicing.25474.11 + 8.0.21-servicing.25474.11 + 8.0.21-servicing.25474.11 + 8.0.21-servicing.25474.11 + 8.0.21-servicing.25474.11 8.0.21 From d2d0ffaed5cc70e7ec4aa03146378c05231a618b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 25 Sep 2025 02:02:48 +0000 Subject: [PATCH 099/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20250924.1 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25462.3 -> To Version 8.0.0-alpha.1.25474.1 --- eng/Version.Details.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 21a4a9a4bc6d..c7b4dee410d5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - 55cc6bb942c12203e42ddb58f72cf5dbf1173eac + fcf0226bfea241d4e4f127600b6c3ae10d772e9a From d2ded208b8a8c6505e2c547d201763a913acfd31 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 25 Sep 2025 02:03:21 +0000 Subject: [PATCH 100/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20250924.1 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25462.3 -> To Version 8.0.0-alpha.1.25474.1 --- NuGet.config | 1 - eng/Version.Details.xml | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/NuGet.config b/NuGet.config index a60874c07461..fe28c7414422 100644 --- a/NuGet.config +++ b/NuGet.config @@ -23,7 +23,6 @@ - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a723b3f16fe8..b89567d34b11 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - 55cc6bb942c12203e42ddb58f72cf5dbf1173eac + fcf0226bfea241d4e4f127600b6c3ae10d772e9a From df3882630b1e0f7d0020fcea3683256c3f6ff16a Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Fri, 26 Sep 2025 00:26:24 +0000 Subject: [PATCH 101/392] Merged PR 53791: [internal/release/8.0.3xx] Update dependencies from dnceng/internal/dotnet-runtime This pull request updates the following dependencies [marker]: <> (Begin:471db9b4-49ec-4921-de46-08dc11e85c3a) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - **Subscription**: [471db9b4-49ec-4921-de46-08dc11e85c3a](https://maestro.dot.net/subscriptions?search=471db9b4-49ec-4921-de46-08dc11e85c3a) - **Build**: [20250925.13](https://dev.azure.com/dnceng/internal/_build/results?buildId=2801893) ([284753](https://maestro.dot.net/channel/3880/azdo:dnceng:internal:dotnet-runtime/build/284753)) - **Date Produced**: September 25, 2025 11:57:30 PM UTC - **Commit**: [362ab6669d55a75d51166f01b596c967c734ef4c](https://dev.azure.com/dnceng/internal/_git/dotnet-runtime?_a=history&version=GC362ab6669d55a75d51166f01b596c967c734ef4c) - **Branch**: [refs/heads/internal/release/8.0](https://dev.azure.com/dnceng/internal/_git/dotnet-runtime?version=GBrefs/heads/internal/release/8.0) [DependencyUpdate]: <> (Begin) - **Updates**: - From [8.0.21-servicing.25473.21 to 8.0.21-servicing.25475.13][1] - Microsoft.NET.HostModel - Microsoft.NETCore.Platforms - VS.Redist.Common.NetCore.SharedFramework.x64.8.0 - VS.Redist.Common.NetCore.TargetingPack.x64.8.0 - From [8.0.21 to 8.0.21][1] - Microsoft.NET.ILLink.Tasks - Microsoft.NETCore.App.Host.win-x64 - Microsoft.NETCore.App.Ref - Microsoft.NETCore.App.Runtime.win-x64 - Microsoft.NETCore.DotNetHostResolver [1]: https://dev.azure.com/dnceng/internal/_git/dotnet-runtime/branches?baseVersion=GC1892887e28c6812653f864f30a621b190b83dd7c&targetVersion=GC362ab6669d55a75d51166f01b596c967c734ef4c&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:471db9b4-49ec-4921-de46-08dc11e85c3a) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index c365e7220631..fd621372ad12 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bef5ab40b3c5..24745cd0fda6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 2559176ced6f..cf6d08e9a186 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.21 - 8.0.21-servicing.25473.21 + 8.0.21-servicing.25475.13 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25473.21 + 8.0.21-servicing.25475.13 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From b24c8a7441bb0025ff99adbc8681f4568968d2a9 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Fri, 26 Sep 2025 00:26:34 +0000 Subject: [PATCH 102/392] Merged PR 53790: [internal/release/8.0.1xx] Update dependencies from dnceng/internal/dotnet-runtime This pull request updates the following dependencies [marker]: <> (Begin:dd95552e-72fb-4363-9b59-08dbd5a5c3e7) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - **Subscription**: [dd95552e-72fb-4363-9b59-08dbd5a5c3e7](https://maestro.dot.net/subscriptions?search=dd95552e-72fb-4363-9b59-08dbd5a5c3e7) - **Build**: [20250925.13](https://dev.azure.com/dnceng/internal/_build/results?buildId=2801893) ([284753](https://maestro.dot.net/channel/3880/azdo:dnceng:internal:dotnet-runtime/build/284753)) - **Date Produced**: September 25, 2025 11:57:30 PM UTC - **Commit**: [362ab6669d55a75d51166f01b596c967c734ef4c](https://dev.azure.com/dnceng/internal/_git/dotnet-runtime?_a=history&version=GC362ab6669d55a75d51166f01b596c967c734ef4c) - **Branch**: [refs/heads/internal/release/8.0](https://dev.azure.com/dnceng/internal/_git/dotnet-runtime?version=GBrefs/heads/internal/release/8.0) [DependencyUpdate]: <> (Begin) - **Updates**: - From [8.0.21-servicing.25473.21 to 8.0.21-servicing.25475.13][1] - Microsoft.NET.HostModel - Microsoft.NETCore.Platforms - VS.Redist.Common.NetCore.SharedFramework.x64.8.0 - VS.Redist.Common.NetCore.TargetingPack.x64.8.0 - From [8.0.21 to 8.0.21][1] - Microsoft.NET.ILLink.Tasks - Microsoft.NETCore.App.Host.win-x64 - Microsoft.NETCore.App.Ref - Microsoft.NETCore.App.Runtime.win-x64 - Microsoft.NETCore.DotNetHostResolver [1]: https://dev.azure.com/dnceng/internal/_git/dotnet-runtime/branches?baseVersion=GC1892887e28c6812653f864f30a621b190b83dd7c&targetVersion=GC362ab6669d55a75d51166f01b596c967c734ef4c&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:dd95552e-72fb-4363-9b59-08dbd5a5c3e7) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 7ac615bbcc0b..c559d8e4321f 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5109e24162dd..2967adcbf42c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1892887e28c6812653f864f30a621b190b83dd7c + 362ab6669d55a75d51166f01b596c967c734ef4c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 33bb46fbb110..9a0d80fb9022 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.21 - 8.0.21-servicing.25473.21 + 8.0.21-servicing.25475.13 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25473.21 + 8.0.21-servicing.25475.13 8.0.0 8.0.1 8.0.3 From 4fe1f3b75b541df46703c707510402a3e9d34496 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 26 Sep 2025 02:02:43 +0000 Subject: [PATCH 103/392] Update dependencies from https://github.com/dotnet/arcade build 20250925.2 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25465.1 -> To Version 8.0.0-beta.25475.2 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b1afc7e278ac..210af4f8a051 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - ea77ace912db0e1cf28f199cb456b27fe311635e + b56341eb86a370acc94711f2571c3b3aff215c4b - + https://github.com/dotnet/arcade - ea77ace912db0e1cf28f199cb456b27fe311635e + b56341eb86a370acc94711f2571c3b3aff215c4b - + https://github.com/dotnet/arcade - ea77ace912db0e1cf28f199cb456b27fe311635e + b56341eb86a370acc94711f2571c3b3aff215c4b - + https://github.com/dotnet/arcade - ea77ace912db0e1cf28f199cb456b27fe311635e + b56341eb86a370acc94711f2571c3b3aff215c4b https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index addfec2584c4..d3187ad475f5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25473.1 + 8.0.0-beta.25475.2 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -211,7 +211,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25473.1 + 8.0.0-beta.25475.2 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index ab78721eca2c..4e4cc5f8451d 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25473.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25473.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25475.2", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25475.2" } } From e51d2d2dd442e44006c73e7792347798a073090a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 26 Sep 2025 02:02:59 +0000 Subject: [PATCH 104/392] Update dependencies from https://github.com/dotnet/arcade build 20250925.2 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25465.1 -> To Version 8.0.0-beta.25475.2 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 435c03eac972..83378a3a5ef7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - ea77ace912db0e1cf28f199cb456b27fe311635e + b56341eb86a370acc94711f2571c3b3aff215c4b - + https://github.com/dotnet/arcade - ea77ace912db0e1cf28f199cb456b27fe311635e + b56341eb86a370acc94711f2571c3b3aff215c4b - + https://github.com/dotnet/arcade - ea77ace912db0e1cf28f199cb456b27fe311635e + b56341eb86a370acc94711f2571c3b3aff215c4b - + https://github.com/dotnet/arcade - ea77ace912db0e1cf28f199cb456b27fe311635e + b56341eb86a370acc94711f2571c3b3aff215c4b https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index e7626b92f1c0..f43221b862bd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25473.1 + 8.0.0-beta.25475.2 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25473.1 + 8.0.0-beta.25475.2 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index ab78721eca2c..4e4cc5f8451d 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25473.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25473.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25475.2", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25475.2" } } From 9fb8ccb8a9eb6e53717be21654d0fbf46356c095 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Fri, 26 Sep 2025 03:21:58 +0000 Subject: [PATCH 105/392] Merged PR 53810: [internal/release/8.0.1xx] Update dependencies from dnceng/internal/dotnet-windowsdesktop This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.NET.Sdk.WindowsDesktop**: from 8.0.21-servicing.25474.4 to 8.0.21-servicing.25475.4 (parent: Microsoft.WindowsDesktop.App.Ref) [DependencyUpdate]: <> (End) [marker]: <> (End:Coherency Updates) [marker]: <> (Begin:43ca46dd-3142-499e-f076-08dbd5a5cbe7) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - **Subscription**: [43ca46dd-3142-499e-f076-08dbd5a5cbe7](https://maestro.dot.net/subscriptions?search=43ca46dd-3142-499e-f076-08dbd5a5cbe7) - **Build**: [20250925.7](https://dev.azure.com/dnceng/internal/_build/results?buildId=2802232) ([284785](https://maestro.dot.net/channel/3880/azdo:dnceng:internal:dotnet-windowsdesktop/build/284785)) - **Date Produced**: September 26, 2025 3:05:19 AM UTC - **Commit**: [74e82c7a451f7350b264b64f8ea43fde017ec0af](https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop?_a=history&version=GC74e82c7a451f7350b264b64f8ea43fde017ec0af) - **Branch**: [refs/heads/internal/release/8.0](https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop?version=GBrefs/heads/internal/release/8.0) [DependencyUpdate]: <> (Begin) - **Updates**: - From [8.0.21 to 8.0.21][1] - Microsoft.WindowsDesktop.App.Ref - Microsoft.WindowsDesktop.App.Runtime.win-x64 - From [8.0.21-servicing.25474.4 to 8.0.21-servicing.25475.7][1] - VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 - VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 [1]: https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop/branches?baseVersion=GC0794008c14ec52875b3bfccce63de08893a58d4e&targetVersion=GC74e82c7a451f7350b264b64f8ea43fde017ec0af&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:43ca46dd-3142-499e-f076-08dbd5a5cbe7) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index c559d8e4321f..2878f8716adb 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2967adcbf42c..6c3860e9338d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 0794008c14ec52875b3bfccce63de08893a58d4e + 74e82c7a451f7350b264b64f8ea43fde017ec0af - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 0794008c14ec52875b3bfccce63de08893a58d4e + 74e82c7a451f7350b264b64f8ea43fde017ec0af https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 0794008c14ec52875b3bfccce63de08893a58d4e + 74e82c7a451f7350b264b64f8ea43fde017ec0af - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 0794008c14ec52875b3bfccce63de08893a58d4e + 74e82c7a451f7350b264b64f8ea43fde017ec0af - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - cd697274d6103a2e6a19ad9ed377b38cce321733 + 3ff72f664fd6e585b4b61fe5d79f33255aca5d6c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 9a0d80fb9022..b88aec54f582 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -186,7 +186,7 @@ - 8.0.21-servicing.25474.4 + 8.0.21-servicing.25475.4 From 0e7542cab2bc861a6098f3076b7aa1d929abcfa0 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Fri, 26 Sep 2025 03:22:21 +0000 Subject: [PATCH 106/392] Merged PR 53811: [internal/release/8.0.3xx] Update dependencies from dnceng/internal/dotnet-windowsdesktop This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.NET.Sdk.WindowsDesktop**: from 8.0.21-servicing.25474.4 to 8.0.21-servicing.25475.4 (parent: Microsoft.WindowsDesktop.App.Ref) [DependencyUpdate]: <> (End) [marker]: <> (End:Coherency Updates) [marker]: <> (Begin:1adb2556-0120-43d1-c468-08dc11e32ec2) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - **Subscription**: [1adb2556-0120-43d1-c468-08dc11e32ec2](https://maestro.dot.net/subscriptions?search=1adb2556-0120-43d1-c468-08dc11e32ec2) - **Build**: [20250925.7](https://dev.azure.com/dnceng/internal/_build/results?buildId=2802232) ([284785](https://maestro.dot.net/channel/3880/azdo:dnceng:internal:dotnet-windowsdesktop/build/284785)) - **Date Produced**: September 26, 2025 3:05:19 AM UTC - **Commit**: [74e82c7a451f7350b264b64f8ea43fde017ec0af](https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop?_a=history&version=GC74e82c7a451f7350b264b64f8ea43fde017ec0af) - **Branch**: [refs/heads/internal/release/8.0](https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop?version=GBrefs/heads/internal/release/8.0) [DependencyUpdate]: <> (Begin) - **Updates**: - From [8.0.21 to 8.0.21][1] - Microsoft.WindowsDesktop.App.Ref - Microsoft.WindowsDesktop.App.Runtime.win-x64 - From [8.0.21-servicing.25474.4 to 8.0.21-servicing.25475.7][1] - VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 - VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 [1]: https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop/branches?baseVersion=GC0794008c14ec52875b3bfccce63de08893a58d4e&targetVersion=GC74e82c7a451f7350b264b64f8ea43fde017ec0af&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:1adb2556-0120-43d1-c468-08dc11e32ec2) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index fd621372ad12..bc33f96c64cb 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 24745cd0fda6..d7802af11dff 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 0794008c14ec52875b3bfccce63de08893a58d4e + 74e82c7a451f7350b264b64f8ea43fde017ec0af - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 0794008c14ec52875b3bfccce63de08893a58d4e + 74e82c7a451f7350b264b64f8ea43fde017ec0af https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 0794008c14ec52875b3bfccce63de08893a58d4e + 74e82c7a451f7350b264b64f8ea43fde017ec0af - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 0794008c14ec52875b3bfccce63de08893a58d4e + 74e82c7a451f7350b264b64f8ea43fde017ec0af - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - cd697274d6103a2e6a19ad9ed377b38cce321733 + 3ff72f664fd6e585b4b61fe5d79f33255aca5d6c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index cf6d08e9a186..5bb8cdcf2522 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -185,7 +185,7 @@ - 8.0.21-servicing.25474.4 + 8.0.21-servicing.25475.4 From b05b06bb8ee2d31ffd53e0c923abbd42a8356263 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Fri, 26 Sep 2025 04:34:18 +0000 Subject: [PATCH 107/392] Merged PR 53819: [internal/release/8.0.1xx] Update dependencies from dnceng/internal/dotnet-aspnetcore This pull request updates the following dependencies [marker]: <> (Begin:5ae73aca-14b4-4570-17b0-08dbd53e3897) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - **Subscription**: [5ae73aca-14b4-4570-17b0-08dbd53e3897](https://maestro.dot.net/subscriptions?search=5ae73aca-14b4-4570-17b0-08dbd53e3897) - **Build**: [20250925.15](https://dev.azure.com/dnceng/internal/_build/results?buildId=2802206) ([284796](https://maestro.dot.net/channel/3880/azdo:dnceng:internal:dotnet-aspnetcore/build/284796)) - **Date Produced**: September 26, 2025 4:13:56 AM UTC - **Commit**: [6254f5ca64f85b90327592dff67ea6b2ec0262c6](https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore?_a=history&version=GC6254f5ca64f85b90327592dff67ea6b2ec0262c6) - **Branch**: [refs/heads/internal/release/8.0](https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore?version=GBrefs/heads/internal/release/8.0) [DependencyUpdate]: <> (Begin) - **Updates**: - From [8.0.21-servicing.25474.11 to 8.0.21-servicing.25475.15][1] - dotnet-dev-certs - dotnet-user-jwts - dotnet-user-secrets - Microsoft.AspNetCore.Analyzers - Microsoft.AspNetCore.App.Ref.Internal - Microsoft.AspNetCore.Components.SdkAnalyzers - Microsoft.AspNetCore.DeveloperCertificates.XPlat - Microsoft.AspNetCore.Mvc.Analyzers - Microsoft.AspNetCore.Mvc.Api.Analyzers - VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 - From [8.0.21 to 8.0.21][1] - Microsoft.AspNetCore.App.Ref - Microsoft.AspNetCore.App.Runtime.win-x64 - Microsoft.AspNetCore.Authorization - Microsoft.AspNetCore.Components.Web - Microsoft.AspNetCore.TestHost - Microsoft.Extensions.FileProviders.Embedded - Microsoft.Extensions.ObjectPool - Microsoft.JSInterop [1]: https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore/branches?baseVersion=GCd22808de86d348a80e2944341f39bbb7953e652c&targetVersion=GC6254f5ca64f85b90327592dff67ea6b2ec0262c6&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:5ae73aca-14b4-4570-17b0-08dbd53e3897) --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 2878f8716adb..d1afd224c52e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6c3860e9338d..4cf6e417e9d2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index b88aec54f582..f786479a7979 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -171,11 +171,11 @@ 8.0.21 - 8.0.21-servicing.25474.11 - 8.0.21-servicing.25474.11 - 8.0.21-servicing.25474.11 - 8.0.21-servicing.25474.11 - 8.0.21-servicing.25474.11 + 8.0.21-servicing.25475.15 + 8.0.21-servicing.25475.15 + 8.0.21-servicing.25475.15 + 8.0.21-servicing.25475.15 + 8.0.21-servicing.25475.15 8.0.21 From 1ed79cd2b76c55145d98f293af4d2cc786723b67 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Fri, 26 Sep 2025 04:34:27 +0000 Subject: [PATCH 108/392] Merged PR 53820: [internal/release/8.0.3xx] Update dependencies from dnceng/internal/dotnet-aspnetcore This pull request updates the following dependencies [marker]: <> (Begin:911684f3-0faa-4fc9-de45-08dc11e85c3a) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - **Subscription**: [911684f3-0faa-4fc9-de45-08dc11e85c3a](https://maestro.dot.net/subscriptions?search=911684f3-0faa-4fc9-de45-08dc11e85c3a) - **Build**: [20250925.15](https://dev.azure.com/dnceng/internal/_build/results?buildId=2802206) ([284796](https://maestro.dot.net/channel/3880/azdo:dnceng:internal:dotnet-aspnetcore/build/284796)) - **Date Produced**: September 26, 2025 4:13:56 AM UTC - **Commit**: [6254f5ca64f85b90327592dff67ea6b2ec0262c6](https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore?_a=history&version=GC6254f5ca64f85b90327592dff67ea6b2ec0262c6) - **Branch**: [refs/heads/internal/release/8.0](https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore?version=GBrefs/heads/internal/release/8.0) [DependencyUpdate]: <> (Begin) - **Updates**: - From [8.0.21-servicing.25474.11 to 8.0.21-servicing.25475.15][1] - dotnet-dev-certs - dotnet-user-jwts - dotnet-user-secrets - Microsoft.AspNetCore.Analyzers - Microsoft.AspNetCore.App.Ref.Internal - Microsoft.AspNetCore.Components.SdkAnalyzers - Microsoft.AspNetCore.DeveloperCertificates.XPlat - Microsoft.AspNetCore.Mvc.Analyzers - Microsoft.AspNetCore.Mvc.Api.Analyzers - VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 - From [8.0.21 to 8.0.21][1] - Microsoft.AspNetCore.App.Ref - Microsoft.AspNetCore.App.Runtime.win-x64 - Microsoft.AspNetCore.Authorization - Microsoft.AspNetCore.Components.Web - Microsoft.AspNetCore.TestHost - Microsoft.Extensions.FileProviders.Embedded - Microsoft.Extensions.ObjectPool - Microsoft.JSInterop [1]: https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore/branches?baseVersion=GCd22808de86d348a80e2944341f39bbb7953e652c&targetVersion=GC6254f5ca64f85b90327592dff67ea6b2ec0262c6&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:911684f3-0faa-4fc9-de45-08dc11e85c3a) --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index bc33f96c64cb..9c223376df8e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d7802af11dff..3cc748bfb373 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - d22808de86d348a80e2944341f39bbb7953e652c + 6254f5ca64f85b90327592dff67ea6b2ec0262c6 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 5bb8cdcf2522..b81c33cfbaea 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -170,11 +170,11 @@ 8.0.21 - 8.0.21-servicing.25474.11 - 8.0.21-servicing.25474.11 - 8.0.21-servicing.25474.11 - 8.0.21-servicing.25474.11 - 8.0.21-servicing.25474.11 + 8.0.21-servicing.25475.15 + 8.0.21-servicing.25475.15 + 8.0.21-servicing.25475.15 + 8.0.21-servicing.25475.15 + 8.0.21-servicing.25475.15 8.0.21 From 8472e535183b6a77dc4f1b7b493200ce5f5466c1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 27 Sep 2025 02:03:08 +0000 Subject: [PATCH 109/392] Update dependencies from https://github.com/dotnet/razor build 20250926.7 On relative base path root Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport From Version 7.0.0-preview.25424.2 -> To Version 7.0.0-preview.25476.7 --- NuGet.config | 1 - eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/NuGet.config b/NuGet.config index a60874c07461..fe28c7414422 100644 --- a/NuGet.config +++ b/NuGet.config @@ -23,7 +23,6 @@ - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a723b3f16fe8..352f34b667f1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -293,18 +293,18 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore c78f4a816c0c6a978a801a05a31dce9013e099e2 - + https://github.com/dotnet/razor - 09ca88197916e545aefea53f16ed1b266644cde9 + 78437adfab5e8f84878fa4c75f2f76c477c2557a - + https://github.com/dotnet/razor - 09ca88197916e545aefea53f16ed1b266644cde9 + 78437adfab5e8f84878fa4c75f2f76c477c2557a - + https://github.com/dotnet/razor - 09ca88197916e545aefea53f16ed1b266644cde9 + 78437adfab5e8f84878fa4c75f2f76c477c2557a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index cba3a2ef7597..4239d90760e6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -181,9 +181,9 @@ - 7.0.0-preview.25424.2 - 7.0.0-preview.25424.2 - 7.0.0-preview.25424.2 + 7.0.0-preview.25476.7 + 7.0.0-preview.25476.7 + 7.0.0-preview.25476.7 From a7946a365e11ef70b37737a84464f0b8153a4e6d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 29 Sep 2025 02:02:36 +0000 Subject: [PATCH 110/392] Update dependencies from https://github.com/dotnet/razor build 20250928.7 On relative base path root Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport From Version 7.0.0-preview.25424.2 -> To Version 7.0.0-preview.25478.7 --- eng/Version.Details.xml | 6 +++--- eng/Versions.props | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 352f34b667f1..11432b61a5a5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -293,16 +293,16 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore c78f4a816c0c6a978a801a05a31dce9013e099e2 - + https://github.com/dotnet/razor 78437adfab5e8f84878fa4c75f2f76c477c2557a - + https://github.com/dotnet/razor 78437adfab5e8f84878fa4c75f2f76c477c2557a - + https://github.com/dotnet/razor 78437adfab5e8f84878fa4c75f2f76c477c2557a diff --git a/eng/Versions.props b/eng/Versions.props index 4239d90760e6..9357fd599030 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -181,9 +181,9 @@ - 7.0.0-preview.25476.7 - 7.0.0-preview.25476.7 - 7.0.0-preview.25476.7 + 7.0.0-preview.25478.7 + 7.0.0-preview.25478.7 + 7.0.0-preview.25478.7 From 2f998795af90d0e3d026391d4e837b422eb657a4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 1 Oct 2025 02:03:23 +0000 Subject: [PATCH 111/392] Update dependencies from https://github.com/dotnet/razor build 20250930.2 On relative base path root Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport From Version 7.0.0-preview.25424.2 -> To Version 7.0.0-preview.25480.2 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 11432b61a5a5..e4519256db8d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -293,18 +293,18 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore c78f4a816c0c6a978a801a05a31dce9013e099e2 - + https://github.com/dotnet/razor - 78437adfab5e8f84878fa4c75f2f76c477c2557a + 51ecca98bb8c800e4f4a17eacf94c2eb41c79a5a - + https://github.com/dotnet/razor - 78437adfab5e8f84878fa4c75f2f76c477c2557a + 51ecca98bb8c800e4f4a17eacf94c2eb41c79a5a - + https://github.com/dotnet/razor - 78437adfab5e8f84878fa4c75f2f76c477c2557a + 51ecca98bb8c800e4f4a17eacf94c2eb41c79a5a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 9357fd599030..b804a5be3206 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -181,9 +181,9 @@ - 7.0.0-preview.25478.7 - 7.0.0-preview.25478.7 - 7.0.0-preview.25478.7 + 7.0.0-preview.25480.2 + 7.0.0-preview.25480.2 + 7.0.0-preview.25480.2 From 69d8273db6849faf518328c963ace0e11980fca7 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 1 Oct 2025 02:05:04 +0000 Subject: [PATCH 112/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250930.10 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25475.13 -> To Version 8.0.21-servicing.25480.10 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index d1afd224c52e..086d0d687708 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4cf6e417e9d2..e6aabb2cbcff 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index f786479a7979..4a527663dd53 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.21 - 8.0.21-servicing.25475.13 + 8.0.21-servicing.25480.10 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25475.13 + 8.0.21-servicing.25480.10 8.0.0 8.0.1 8.0.3 From c964fbca7727b631aaac0615cf7a0b7d07b82a1c Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 1 Oct 2025 02:05:05 +0000 Subject: [PATCH 113/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250930.10 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25475.13 -> To Version 8.0.21-servicing.25480.10 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 9c223376df8e..39b75fc48255 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3cc748bfb373..56794673936e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index b81c33cfbaea..6fd5c20cb696 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.21 - 8.0.21-servicing.25475.13 + 8.0.21-servicing.25480.10 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25475.13 + 8.0.21-servicing.25480.10 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From 38b1552daf6e132cf6b2964ffc03446ffb6b2c98 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 1 Oct 2025 02:05:08 +0000 Subject: [PATCH 114/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20250930.10 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25475.13 -> To Version 8.0.21-servicing.25480.10 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index b44d8be56dea..246cabb7c604 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -63,7 +63,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0d9e65d87f8f..07849cafece6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 362ab6669d55a75d51166f01b596c967c734ef4c + b6bb124b6a5613d31c440729a76f4f0649c43c1f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 48eab6b7f87b..fefaf1dae3a6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.21 - 8.0.21-servicing.25475.13 + 8.0.21-servicing.25480.10 8.0.21 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.21 - 8.0.21-servicing.25475.13 + 8.0.21-servicing.25480.10 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From 36c09b3b12a0d7e5783bf003bccfac2b53ea8b3d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 4 Oct 2025 14:58:54 +0000 Subject: [PATCH 115/392] Update dependencies from https://github.com/dotnet/arcade build 20251004.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25465.1 -> To Version 8.0.0-beta.25504.1 --- eng/Version.Details.xml | 16 +-- eng/Versions.props | 4 +- eng/common/post-build/nuget-validation.ps1 | 11 +- eng/common/post-build/nuget-verification.ps1 | 121 ++++++++++++++++++ .../post-build/post-build.yml | 3 +- .../templates/post-build/post-build.yml | 1 - global.json | 4 +- 7 files changed, 136 insertions(+), 24 deletions(-) create mode 100644 eng/common/post-build/nuget-verification.ps1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 210af4f8a051..f7731aa117a5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - b56341eb86a370acc94711f2571c3b3aff215c4b + 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 - + https://github.com/dotnet/arcade - b56341eb86a370acc94711f2571c3b3aff215c4b + 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 - + https://github.com/dotnet/arcade - b56341eb86a370acc94711f2571c3b3aff215c4b + 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 - + https://github.com/dotnet/arcade - b56341eb86a370acc94711f2571c3b3aff215c4b + 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index d3187ad475f5..c7944dafbb0a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25475.2 + 8.0.0-beta.25504.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -211,7 +211,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25475.2 + 8.0.0-beta.25504.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/post-build/nuget-validation.ps1 b/eng/common/post-build/nuget-validation.ps1 index dab3534ab538..22b1c4dfe4a7 100644 --- a/eng/common/post-build/nuget-validation.ps1 +++ b/eng/common/post-build/nuget-validation.ps1 @@ -2,20 +2,13 @@ # tool: https://github.com/NuGet/NuGetGallery/tree/jver-verify/src/VerifyMicrosoftPackage param( - [Parameter(Mandatory=$true)][string] $PackagesPath, # Path to where the packages to be validated are - [Parameter(Mandatory=$true)][string] $ToolDestinationPath # Where the validation tool should be downloaded to + [Parameter(Mandatory=$true)][string] $PackagesPath # Path to where the packages to be validated are ) try { . $PSScriptRoot\post-build-utils.ps1 - $url = 'https://raw.githubusercontent.com/NuGet/NuGetGallery/3e25ad135146676bcab0050a516939d9958bfa5d/src/VerifyMicrosoftPackage/verify.ps1' - - New-Item -ItemType 'directory' -Path ${ToolDestinationPath} -Force - - Invoke-WebRequest $url -OutFile ${ToolDestinationPath}\verify.ps1 - - & ${ToolDestinationPath}\verify.ps1 ${PackagesPath}\*.nupkg + & $PSScriptRoot\nuget-verification.ps1 ${PackagesPath}\*.nupkg } catch { Write-Host $_.ScriptStackTrace diff --git a/eng/common/post-build/nuget-verification.ps1 b/eng/common/post-build/nuget-verification.ps1 new file mode 100644 index 000000000000..8467dbf8e7c2 --- /dev/null +++ b/eng/common/post-build/nuget-verification.ps1 @@ -0,0 +1,121 @@ +<# +.SYNOPSIS + Verifies that Microsoft NuGet packages have proper metadata. +.DESCRIPTION + Downloads a verification tool and runs metadata validation on the provided NuGet packages. This script writes an + error if any of the provided packages fail validation. All arguments provided to this PowerShell script that do not + match PowerShell parameters are passed on to the verification tool downloaded during the execution of this script. +.PARAMETER NuGetExePath + The path to the nuget.exe binary to use. If not provided, nuget.exe will be downloaded into the -DownloadPath + directory. +.PARAMETER PackageSource + The package source to use to download the verification tool. If not provided, nuget.org will be used. +.PARAMETER DownloadPath + The directory path to download the verification tool and nuget.exe to. If not provided, + %TEMP%\NuGet.VerifyNuGetPackage will be used. +.PARAMETER args + Arguments that will be passed to the verification tool. +.EXAMPLE + PS> .\verify.ps1 *.nupkg + Verifies the metadata of all .nupkg files in the currect working directory. +.EXAMPLE + PS> .\verify.ps1 --help + Displays the help text of the downloaded verifiction tool. +.LINK + https://github.com/NuGet/NuGetGallery/blob/master/src/VerifyMicrosoftPackage/README.md +#> + +# This script was copied from https://github.com/NuGet/NuGetGallery/blob/3e25ad135146676bcab0050a516939d9958bfa5d/src/VerifyMicrosoftPackage/verify.ps1 + +[CmdletBinding(PositionalBinding = $false)] +param( + [string]$NuGetExePath, + [string]$PackageSource = "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json", + [string]$DownloadPath, + [Parameter(ValueFromRemainingArguments = $true)] + [string[]]$args +) + +# The URL to download nuget.exe. +$nugetExeUrl = "https://dist.nuget.org/win-x86-commandline/v4.9.4/nuget.exe" + +# The package ID of the verification tool. +$packageId = "NuGet.VerifyMicrosoftPackage" + +# The location that nuget.exe and the verification tool will be downloaded to. +if (!$DownloadPath) { + $DownloadPath = (Join-Path $env:TEMP "NuGet.VerifyMicrosoftPackage") +} + +$fence = New-Object -TypeName string -ArgumentList '=', 80 + +# Create the download directory, if it doesn't already exist. +if (!(Test-Path $DownloadPath)) { + New-Item -ItemType Directory $DownloadPath | Out-Null +} +Write-Host "Using download path: $DownloadPath" + +if ($NuGetExePath) { + $nuget = $NuGetExePath +} else { + $downloadedNuGetExe = Join-Path $DownloadPath "nuget.exe" + + # Download nuget.exe, if it doesn't already exist. + if (!(Test-Path $downloadedNuGetExe)) { + Write-Host "Downloading nuget.exe from $nugetExeUrl..." + $ProgressPreference = 'SilentlyContinue' + try { + Invoke-WebRequest $nugetExeUrl -OutFile $downloadedNuGetExe + $ProgressPreference = 'Continue' + } catch { + $ProgressPreference = 'Continue' + Write-Error $_ + Write-Error "nuget.exe failed to download." + exit + } + } + + $nuget = $downloadedNuGetExe +} + +Write-Host "Using nuget.exe path: $nuget" +Write-Host " " + +# Download the latest version of the verification tool. +Write-Host "Downloading the latest version of $packageId from $packageSource..." +Write-Host $fence +& $nuget install $packageId ` + -Prerelease ` + -OutputDirectory $DownloadPath ` + -Source $PackageSource +Write-Host $fence +Write-Host " " + +if ($LASTEXITCODE -ne 0) { + Write-Error "nuget.exe failed to fetch the verify tool." + exit +} + +# Find the most recently downloaded tool +Write-Host "Finding the most recently downloaded verification tool." +$verifyProbePath = Join-Path $DownloadPath "$packageId.*" +$verifyPath = Get-ChildItem -Path $verifyProbePath -Directory ` + | Sort-Object -Property LastWriteTime -Descending ` + | Select-Object -First 1 +$verify = Join-Path $verifyPath "tools\NuGet.VerifyMicrosoftPackage.exe" +Write-Host "Using verification tool: $verify" +Write-Host " " + +# Execute the verification tool. +Write-Host "Executing the verify tool..." +Write-Host $fence +& $verify $args +Write-Host $fence +Write-Host " " + +# Respond to the exit code. +if ($LASTEXITCODE -ne 0) { + Write-Error "The verify tool found some problems." +} else { + Write-Output "The verify tool succeeded." +} \ No newline at end of file diff --git a/eng/common/templates-official/post-build/post-build.yml b/eng/common/templates-official/post-build/post-build.yml index 9fef8103991c..817e2d80dea1 100644 --- a/eng/common/templates-official/post-build/post-build.yml +++ b/eng/common/templates-official/post-build/post-build.yml @@ -134,8 +134,7 @@ stages: displayName: Validate inputs: filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/nuget-validation.ps1 - arguments: -PackagesPath $(Build.ArtifactStagingDirectory)/PackageArtifacts/ - -ToolDestinationPath $(Agent.BuildDirectory)/Extract/ + arguments: -PackagesPath $(Build.ArtifactStagingDirectory)/PackageArtifacts/ - job: displayName: Signing Validation diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index 6e5722dc2e17..ea1785a8aa26 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -132,7 +132,6 @@ stages: inputs: filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/nuget-validation.ps1 arguments: -PackagesPath $(Build.ArtifactStagingDirectory)/PackageArtifacts/ - -ToolDestinationPath $(Agent.BuildDirectory)/Extract/ - job: displayName: Signing Validation diff --git a/global.json b/global.json index 4e4cc5f8451d..0b7ae0dd1ace 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25475.2", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25475.2" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25504.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25504.1" } } From 0d170165a407f70a2ba48ec05bbb89fe4dff3216 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 4 Oct 2025 14:59:47 +0000 Subject: [PATCH 116/392] Update dependencies from https://github.com/dotnet/arcade build 20251004.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25465.1 -> To Version 8.0.0-beta.25504.1 --- eng/Version.Details.xml | 16 +-- eng/Versions.props | 4 +- eng/common/post-build/nuget-validation.ps1 | 11 +- eng/common/post-build/nuget-verification.ps1 | 121 ++++++++++++++++++ .../post-build/post-build.yml | 3 +- .../templates/post-build/post-build.yml | 1 - global.json | 4 +- 7 files changed, 136 insertions(+), 24 deletions(-) create mode 100644 eng/common/post-build/nuget-verification.ps1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 83378a3a5ef7..b8a39f30890d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - b56341eb86a370acc94711f2571c3b3aff215c4b + 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 - + https://github.com/dotnet/arcade - b56341eb86a370acc94711f2571c3b3aff215c4b + 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 - + https://github.com/dotnet/arcade - b56341eb86a370acc94711f2571c3b3aff215c4b + 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 - + https://github.com/dotnet/arcade - b56341eb86a370acc94711f2571c3b3aff215c4b + 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index f43221b862bd..a3f7c834a454 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25475.2 + 8.0.0-beta.25504.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25475.2 + 8.0.0-beta.25504.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/post-build/nuget-validation.ps1 b/eng/common/post-build/nuget-validation.ps1 index dab3534ab538..22b1c4dfe4a7 100644 --- a/eng/common/post-build/nuget-validation.ps1 +++ b/eng/common/post-build/nuget-validation.ps1 @@ -2,20 +2,13 @@ # tool: https://github.com/NuGet/NuGetGallery/tree/jver-verify/src/VerifyMicrosoftPackage param( - [Parameter(Mandatory=$true)][string] $PackagesPath, # Path to where the packages to be validated are - [Parameter(Mandatory=$true)][string] $ToolDestinationPath # Where the validation tool should be downloaded to + [Parameter(Mandatory=$true)][string] $PackagesPath # Path to where the packages to be validated are ) try { . $PSScriptRoot\post-build-utils.ps1 - $url = 'https://raw.githubusercontent.com/NuGet/NuGetGallery/3e25ad135146676bcab0050a516939d9958bfa5d/src/VerifyMicrosoftPackage/verify.ps1' - - New-Item -ItemType 'directory' -Path ${ToolDestinationPath} -Force - - Invoke-WebRequest $url -OutFile ${ToolDestinationPath}\verify.ps1 - - & ${ToolDestinationPath}\verify.ps1 ${PackagesPath}\*.nupkg + & $PSScriptRoot\nuget-verification.ps1 ${PackagesPath}\*.nupkg } catch { Write-Host $_.ScriptStackTrace diff --git a/eng/common/post-build/nuget-verification.ps1 b/eng/common/post-build/nuget-verification.ps1 new file mode 100644 index 000000000000..8467dbf8e7c2 --- /dev/null +++ b/eng/common/post-build/nuget-verification.ps1 @@ -0,0 +1,121 @@ +<# +.SYNOPSIS + Verifies that Microsoft NuGet packages have proper metadata. +.DESCRIPTION + Downloads a verification tool and runs metadata validation on the provided NuGet packages. This script writes an + error if any of the provided packages fail validation. All arguments provided to this PowerShell script that do not + match PowerShell parameters are passed on to the verification tool downloaded during the execution of this script. +.PARAMETER NuGetExePath + The path to the nuget.exe binary to use. If not provided, nuget.exe will be downloaded into the -DownloadPath + directory. +.PARAMETER PackageSource + The package source to use to download the verification tool. If not provided, nuget.org will be used. +.PARAMETER DownloadPath + The directory path to download the verification tool and nuget.exe to. If not provided, + %TEMP%\NuGet.VerifyNuGetPackage will be used. +.PARAMETER args + Arguments that will be passed to the verification tool. +.EXAMPLE + PS> .\verify.ps1 *.nupkg + Verifies the metadata of all .nupkg files in the currect working directory. +.EXAMPLE + PS> .\verify.ps1 --help + Displays the help text of the downloaded verifiction tool. +.LINK + https://github.com/NuGet/NuGetGallery/blob/master/src/VerifyMicrosoftPackage/README.md +#> + +# This script was copied from https://github.com/NuGet/NuGetGallery/blob/3e25ad135146676bcab0050a516939d9958bfa5d/src/VerifyMicrosoftPackage/verify.ps1 + +[CmdletBinding(PositionalBinding = $false)] +param( + [string]$NuGetExePath, + [string]$PackageSource = "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json", + [string]$DownloadPath, + [Parameter(ValueFromRemainingArguments = $true)] + [string[]]$args +) + +# The URL to download nuget.exe. +$nugetExeUrl = "https://dist.nuget.org/win-x86-commandline/v4.9.4/nuget.exe" + +# The package ID of the verification tool. +$packageId = "NuGet.VerifyMicrosoftPackage" + +# The location that nuget.exe and the verification tool will be downloaded to. +if (!$DownloadPath) { + $DownloadPath = (Join-Path $env:TEMP "NuGet.VerifyMicrosoftPackage") +} + +$fence = New-Object -TypeName string -ArgumentList '=', 80 + +# Create the download directory, if it doesn't already exist. +if (!(Test-Path $DownloadPath)) { + New-Item -ItemType Directory $DownloadPath | Out-Null +} +Write-Host "Using download path: $DownloadPath" + +if ($NuGetExePath) { + $nuget = $NuGetExePath +} else { + $downloadedNuGetExe = Join-Path $DownloadPath "nuget.exe" + + # Download nuget.exe, if it doesn't already exist. + if (!(Test-Path $downloadedNuGetExe)) { + Write-Host "Downloading nuget.exe from $nugetExeUrl..." + $ProgressPreference = 'SilentlyContinue' + try { + Invoke-WebRequest $nugetExeUrl -OutFile $downloadedNuGetExe + $ProgressPreference = 'Continue' + } catch { + $ProgressPreference = 'Continue' + Write-Error $_ + Write-Error "nuget.exe failed to download." + exit + } + } + + $nuget = $downloadedNuGetExe +} + +Write-Host "Using nuget.exe path: $nuget" +Write-Host " " + +# Download the latest version of the verification tool. +Write-Host "Downloading the latest version of $packageId from $packageSource..." +Write-Host $fence +& $nuget install $packageId ` + -Prerelease ` + -OutputDirectory $DownloadPath ` + -Source $PackageSource +Write-Host $fence +Write-Host " " + +if ($LASTEXITCODE -ne 0) { + Write-Error "nuget.exe failed to fetch the verify tool." + exit +} + +# Find the most recently downloaded tool +Write-Host "Finding the most recently downloaded verification tool." +$verifyProbePath = Join-Path $DownloadPath "$packageId.*" +$verifyPath = Get-ChildItem -Path $verifyProbePath -Directory ` + | Sort-Object -Property LastWriteTime -Descending ` + | Select-Object -First 1 +$verify = Join-Path $verifyPath "tools\NuGet.VerifyMicrosoftPackage.exe" +Write-Host "Using verification tool: $verify" +Write-Host " " + +# Execute the verification tool. +Write-Host "Executing the verify tool..." +Write-Host $fence +& $verify $args +Write-Host $fence +Write-Host " " + +# Respond to the exit code. +if ($LASTEXITCODE -ne 0) { + Write-Error "The verify tool found some problems." +} else { + Write-Output "The verify tool succeeded." +} \ No newline at end of file diff --git a/eng/common/templates-official/post-build/post-build.yml b/eng/common/templates-official/post-build/post-build.yml index 9fef8103991c..817e2d80dea1 100644 --- a/eng/common/templates-official/post-build/post-build.yml +++ b/eng/common/templates-official/post-build/post-build.yml @@ -134,8 +134,7 @@ stages: displayName: Validate inputs: filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/nuget-validation.ps1 - arguments: -PackagesPath $(Build.ArtifactStagingDirectory)/PackageArtifacts/ - -ToolDestinationPath $(Agent.BuildDirectory)/Extract/ + arguments: -PackagesPath $(Build.ArtifactStagingDirectory)/PackageArtifacts/ - job: displayName: Signing Validation diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index 6e5722dc2e17..ea1785a8aa26 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -132,7 +132,6 @@ stages: inputs: filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/nuget-validation.ps1 arguments: -PackagesPath $(Build.ArtifactStagingDirectory)/PackageArtifacts/ - -ToolDestinationPath $(Agent.BuildDirectory)/Extract/ - job: displayName: Signing Validation diff --git a/global.json b/global.json index 4e4cc5f8451d..0b7ae0dd1ace 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25475.2", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25475.2" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25504.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25504.1" } } From ff46e59f7cbdbb2251afb03afbb31d3f8c026276 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 4 Oct 2025 16:57:30 +0000 Subject: [PATCH 117/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251004.2 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.21 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25475.7 -> To Version 8.0.21-servicing.25504.2 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 086d0d687708..9238c554beb6 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e6aabb2cbcff..722fb37da019 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,19 +230,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 74e82c7a451f7350b264b64f8ea43fde017ec0af + c428a6664cd37586faef5275644c026ff3ece77f - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 74e82c7a451f7350b264b64f8ea43fde017ec0af + c428a6664cd37586faef5275644c026ff3ece77f https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 74e82c7a451f7350b264b64f8ea43fde017ec0af + c428a6664cd37586faef5275644c026ff3ece77f - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 74e82c7a451f7350b264b64f8ea43fde017ec0af + c428a6664cd37586faef5275644c026ff3ece77f https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From 0fbb3ccf8427be2c3e353917dfe8e2a394f704b1 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 4 Oct 2025 16:57:32 +0000 Subject: [PATCH 118/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251004.2 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.21 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25475.7 -> To Version 8.0.21-servicing.25504.2 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 246cabb7c604..9eccd52393d0 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 07849cafece6..8378638573ba 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,19 +230,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 74e82c7a451f7350b264b64f8ea43fde017ec0af + c428a6664cd37586faef5275644c026ff3ece77f - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 74e82c7a451f7350b264b64f8ea43fde017ec0af + c428a6664cd37586faef5275644c026ff3ece77f https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 74e82c7a451f7350b264b64f8ea43fde017ec0af + c428a6664cd37586faef5275644c026ff3ece77f - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 74e82c7a451f7350b264b64f8ea43fde017ec0af + c428a6664cd37586faef5275644c026ff3ece77f https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From ccc42dbfc45d9f715c5a57ac92e53ff41bde8262 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 4 Oct 2025 16:57:36 +0000 Subject: [PATCH 119/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251004.2 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.21 -> To Version 8.0.21 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25475.7 -> To Version 8.0.21-servicing.25504.2 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 39b75fc48255..6a462044df1f 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 56794673936e..5283ed7bc465 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,19 +230,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 74e82c7a451f7350b264b64f8ea43fde017ec0af + c428a6664cd37586faef5275644c026ff3ece77f - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 74e82c7a451f7350b264b64f8ea43fde017ec0af + c428a6664cd37586faef5275644c026ff3ece77f https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 74e82c7a451f7350b264b64f8ea43fde017ec0af + c428a6664cd37586faef5275644c026ff3ece77f - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 74e82c7a451f7350b264b64f8ea43fde017ec0af + c428a6664cd37586faef5275644c026ff3ece77f https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From 1cec95b9f6eea18a534134ae76f4d4c57cd8aa79 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 7 Oct 2025 10:55:30 -0700 Subject: [PATCH 120/392] Update branding to 8.0.122 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 683cdee3039f..d26f5ca27725 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,7 +11,7 @@ - 8.0.121 + 8.0.122 true release From 526271e6a164b043cd7382b528d7f393b49bfea5 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 7 Oct 2025 10:55:38 -0700 Subject: [PATCH 121/392] Update branding to 8.0.319 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index cba3a2ef7597..88dc296c45be 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,7 +11,7 @@ - 8.0.318 + 8.0.319 8.0.300 true From 8bd52b56e3857176173a1abf1d00c222db0a95a7 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 7 Oct 2025 22:48:48 +0000 Subject: [PATCH 122/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251007.8 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.21 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25475.7 -> To Version 8.0.22-servicing.25507.8 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/NuGet.config b/NuGet.config index 9eccd52393d0..2e6b22346caa 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8378638573ba..a2ca15a689cb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -228,21 +228,21 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c428a6664cd37586faef5275644c026ff3ece77f + 9df853fd82c6182d404d8422d9c4f027c66d6553 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c428a6664cd37586faef5275644c026ff3ece77f + 9df853fd82c6182d404d8422d9c4f027c66d6553 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c428a6664cd37586faef5275644c026ff3ece77f + 9df853fd82c6182d404d8422d9c4f027c66d6553 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c428a6664cd37586faef5275644c026ff3ece77f + 9df853fd82c6182d404d8422d9c4f027c66d6553 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From 9e4b2baef7b810999ad908f178dcbb302a109f7e Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 7 Oct 2025 22:48:49 +0000 Subject: [PATCH 123/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251007.8 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.21 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25475.7 -> To Version 8.0.22-servicing.25507.8 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/NuGet.config b/NuGet.config index 6a462044df1f..fde2c0803db9 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5283ed7bc465..117de2e52f61 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -228,21 +228,21 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c428a6664cd37586faef5275644c026ff3ece77f + 9df853fd82c6182d404d8422d9c4f027c66d6553 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c428a6664cd37586faef5275644c026ff3ece77f + 9df853fd82c6182d404d8422d9c4f027c66d6553 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c428a6664cd37586faef5275644c026ff3ece77f + 9df853fd82c6182d404d8422d9c4f027c66d6553 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c428a6664cd37586faef5275644c026ff3ece77f + 9df853fd82c6182d404d8422d9c4f027c66d6553 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From bfbff588af7db751ab6678a8c592e1cf92871d37 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 7 Oct 2025 22:48:53 +0000 Subject: [PATCH 124/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251007.8 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.21 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25475.7 -> To Version 8.0.22-servicing.25507.8 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/NuGet.config b/NuGet.config index 9238c554beb6..5f3dfbf1ed10 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 722fb37da019..7181d300ed27 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -228,21 +228,21 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c428a6664cd37586faef5275644c026ff3ece77f + 9df853fd82c6182d404d8422d9c4f027c66d6553 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c428a6664cd37586faef5275644c026ff3ece77f + 9df853fd82c6182d404d8422d9c4f027c66d6553 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c428a6664cd37586faef5275644c026ff3ece77f + 9df853fd82c6182d404d8422d9c4f027c66d6553 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c428a6664cd37586faef5275644c026ff3ece77f + 9df853fd82c6182d404d8422d9c4f027c66d6553 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From 742ebeff52d4fabb10407ef3158ebc07da382aa6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 8 Oct 2025 02:03:36 +0000 Subject: [PATCH 125/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20251007.1 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25462.3 -> To Version 8.0.0-alpha.1.25507.1 --- eng/Version.Details.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c7b4dee410d5..2abc630cf886 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - fcf0226bfea241d4e4f127600b6c3ae10d772e9a + 7a3266db9e2b7422e8277f04932eff9b7064b66e From 6049065c02a37dd0f9d8deee302e15fd118aea95 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 8 Oct 2025 02:03:45 +0000 Subject: [PATCH 126/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20251007.1 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25462.3 -> To Version 8.0.0-alpha.1.25507.1 --- eng/Version.Details.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b89567d34b11..97dde657888e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - fcf0226bfea241d4e4f127600b6c3ae10d772e9a + 7a3266db9e2b7422e8277f04932eff9b7064b66e From 16b73afaa868c7103ee10fc28c25f5466643ddee Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 8 Oct 2025 04:38:00 +0000 Subject: [PATCH 127/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251007.14 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25475.13 -> To Version 8.0.22-servicing.25507.14 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 12 ++++++------ 3 files changed, 26 insertions(+), 26 deletions(-) diff --git a/NuGet.config b/NuGet.config index 5f3dfbf1ed10..ff7907e561ba 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7181d300ed27..d4a70b435f24 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -14,42 +14,42 @@ 9354fb2b29c39630906bc54e2014399b2553dcba - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f https://github.com/dotnet/emsdk @@ -200,9 +200,9 @@ https://github.com/microsoft/vstest aa59400b11e1aeee2e8af48928dbd48748a8bef9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 4a527663dd53..52106ebaefab 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,18 +49,18 @@ - 8.0.21 - 8.0.21-servicing.25480.10 - 8.0.21 + 8.0.22 + 8.0.22-servicing.25507.14 + 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 - 8.0.21 - 8.0.21-servicing.25480.10 + 8.0.22 + 8.0.22-servicing.25507.14 8.0.0 8.0.1 8.0.3 8.0.1 - 8.0.21 + 8.0.22 8.0.0 8.0.0 8.0.21 From e3b3f87b04d8aa625f3a2b86c3258b2ef5a407c1 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 8 Oct 2025 04:38:05 +0000 Subject: [PATCH 128/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251007.14 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25475.13 -> To Version 8.0.22-servicing.25507.14 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 12 ++++++------ 3 files changed, 26 insertions(+), 26 deletions(-) diff --git a/NuGet.config b/NuGet.config index fde2c0803db9..c5a8d07ca3f0 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 117de2e52f61..29935210e1d4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -14,42 +14,42 @@ 4f7a7c5e80fa77499265e11179868b94284ef7d2 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f https://github.com/dotnet/emsdk @@ -200,9 +200,9 @@ https://github.com/microsoft/vstest c4d80397805bec06b354d20aeb1773e243c6add0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 6fd5c20cb696..feb75f8c2e16 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -51,19 +51,19 @@ - 8.0.21 - 8.0.21-servicing.25480.10 - 8.0.21 + 8.0.22 + 8.0.22-servicing.25507.14 + 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 - 8.0.21 - 8.0.21-servicing.25480.10 + 8.0.22 + 8.0.22-servicing.25507.14 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 8.0.3 8.0.1 - 8.0.21 + 8.0.22 8.0.0 8.0.0 8.0.21 From ab5cfe20d0632f8f5e78582f39b5b7d067b4f74a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 8 Oct 2025 04:38:06 +0000 Subject: [PATCH 129/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251007.14 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.21-servicing.25475.13 -> To Version 8.0.22-servicing.25507.14 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.21 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 12 ++++++------ 3 files changed, 26 insertions(+), 26 deletions(-) diff --git a/NuGet.config b/NuGet.config index 2e6b22346caa..f527e3ccddda 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -63,7 +63,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a2ca15a689cb..e348541bd02f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -14,42 +14,42 @@ a2c45457884ceb15ab6e368c87571ce1e480fc93 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f https://github.com/dotnet/emsdk @@ -200,9 +200,9 @@ https://github.com/microsoft/vstest 7855c9b221686104532ebf3380f2d45b3613b369 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - b6bb124b6a5613d31c440729a76f4f0649c43c1f + f8f07a0ad92f9efe58458892b4316bdd857d6b3f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index fefaf1dae3a6..5d35a6c71921 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -51,19 +51,19 @@ - 8.0.21 - 8.0.21-servicing.25480.10 - 8.0.21 + 8.0.22 + 8.0.22-servicing.25507.14 + 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 - 8.0.21 - 8.0.21-servicing.25480.10 + 8.0.22 + 8.0.22-servicing.25507.14 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 8.0.3 8.0.1 - 8.0.21 + 8.0.22 8.0.0 8.0.0 8.0.21 From 970d3353b287229f65ede7caf7d5e2790741be57 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 8 Oct 2025 22:35:18 +0000 Subject: [PATCH 130/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251008.8 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25475.15 -> To Version 8.0.21-servicing.25508.8 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index c5a8d07ca3f0..a13d6b78f849 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 29935210e1d4..723bb3f9633d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index feb75f8c2e16..930fd030f15c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -170,11 +170,11 @@ 8.0.21 - 8.0.21-servicing.25475.15 - 8.0.21-servicing.25475.15 - 8.0.21-servicing.25475.15 - 8.0.21-servicing.25475.15 - 8.0.21-servicing.25475.15 + 8.0.21-servicing.25508.8 + 8.0.21-servicing.25508.8 + 8.0.21-servicing.25508.8 + 8.0.21-servicing.25508.8 + 8.0.21-servicing.25508.8 8.0.21 From 5bed3f98e76ea66cbbbec760872e8fa282616135 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 8 Oct 2025 22:35:18 +0000 Subject: [PATCH 131/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251008.8 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25475.15 -> To Version 8.0.21-servicing.25508.8 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index f527e3ccddda..18f5830b590d 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e348541bd02f..02c77be3927c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn bc1c3011064a493b0ca527df6fb7215e2e5cfa96 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 5d35a6c71921..222d07c15846 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -172,11 +172,11 @@ 8.0.21 - 8.0.21-servicing.25475.15 - 8.0.21-servicing.25475.15 - 8.0.21-servicing.25475.15 - 8.0.21-servicing.25475.15 - 8.0.21-servicing.25475.15 + 8.0.21-servicing.25508.8 + 8.0.21-servicing.25508.8 + 8.0.21-servicing.25508.8 + 8.0.21-servicing.25508.8 + 8.0.21-servicing.25508.8 8.0.21 From a0ff7e362e056b39b8660ff8a692ba0026c890a9 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 8 Oct 2025 22:35:23 +0000 Subject: [PATCH 132/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251008.8 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25475.15 -> To Version 8.0.21-servicing.25508.8 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index ff7907e561ba..b6330ed13e75 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d4a70b435f24..80289f17cf43 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 6254f5ca64f85b90327592dff67ea6b2ec0262c6 + 066e272db1522826e79de688b708eee843c4f6aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 52106ebaefab..650d7f8745fc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -171,11 +171,11 @@ 8.0.21 - 8.0.21-servicing.25475.15 - 8.0.21-servicing.25475.15 - 8.0.21-servicing.25475.15 - 8.0.21-servicing.25475.15 - 8.0.21-servicing.25475.15 + 8.0.21-servicing.25508.8 + 8.0.21-servicing.25508.8 + 8.0.21-servicing.25508.8 + 8.0.21-servicing.25508.8 + 8.0.21-servicing.25508.8 8.0.21 From 26dc9fe1ba66bfaf4ef0003aeab0a34a52db38cd Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 10 Oct 2025 08:28:24 +0000 Subject: [PATCH 133/392] Update dependencies from https://github.com/dotnet/templating build 20251010.2 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.121-servicing.25465.4 -> To Version 8.0.122-servicing.25510.2 Microsoft.TemplateEngine.Abstractions From Version 8.0.121 -> To Version 8.0.122 --- NuGet.config | 2 +- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/NuGet.config b/NuGet.config index f5da45e1229e..1b978027c65a 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 64bb8e96503a..b1d756ea9f75 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/templating - 9354fb2b29c39630906bc54e2014399b2553dcba + 1a37a77dc5d33c2fbef2f16949bf7424897b9b93 - + https://github.com/dotnet/templating - 9354fb2b29c39630906bc54e2014399b2553dcba + 1a37a77dc5d33c2fbef2f16949bf7424897b9b93 - + https://github.com/dotnet/templating - 9354fb2b29c39630906bc54e2014399b2553dcba + 1a37a77dc5d33c2fbef2f16949bf7424897b9b93 diff --git a/eng/Versions.props b/eng/Versions.props index 02d923586843..a8aec5722c47 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -139,13 +139,13 @@ - 8.0.121 + 8.0.122 $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.121-servicing.25465.4 + 8.0.122-servicing.25510.2 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 555c630bf9fdb8fd510fa81b26767c2511e3a6f7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 10 Oct 2025 09:38:39 +0000 Subject: [PATCH 134/392] Update dependencies from https://github.com/dotnet/templating build 20251010.9 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.121-servicing.25465.4 -> To Version 8.0.122-servicing.25510.9 Microsoft.TemplateEngine.Abstractions From Version 8.0.121 -> To Version 8.0.122 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index 1b978027c65a..31d6f2bb726d 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b1d756ea9f75..9a29b83c54b3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 1a37a77dc5d33c2fbef2f16949bf7424897b9b93 + f76b42aa5b23046519be22cb52fe618be122fe8d - + https://github.com/dotnet/templating - 1a37a77dc5d33c2fbef2f16949bf7424897b9b93 + f76b42aa5b23046519be22cb52fe618be122fe8d - + https://github.com/dotnet/templating - 1a37a77dc5d33c2fbef2f16949bf7424897b9b93 + f76b42aa5b23046519be22cb52fe618be122fe8d diff --git a/eng/Versions.props b/eng/Versions.props index a8aec5722c47..31145fa4c936 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -145,7 +145,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.122-servicing.25510.2 + 8.0.122-servicing.25510.9 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From c2776a487047039e6260e5f4bf585127a671371a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 10 Oct 2025 22:41:38 +0000 Subject: [PATCH 135/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251010.10 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25475.15 -> To Version 8.0.21-servicing.25510.10 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index a13d6b78f849..958554fb0c71 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 723bb3f9633d..37c373bcb57a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 930fd030f15c..e9742baa087d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -170,11 +170,11 @@ 8.0.21 - 8.0.21-servicing.25508.8 - 8.0.21-servicing.25508.8 - 8.0.21-servicing.25508.8 - 8.0.21-servicing.25508.8 - 8.0.21-servicing.25508.8 + 8.0.21-servicing.25510.10 + 8.0.21-servicing.25510.10 + 8.0.21-servicing.25510.10 + 8.0.21-servicing.25510.10 + 8.0.21-servicing.25510.10 8.0.21 From 5f17621887a6d414525ae627e598af6921d077b3 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 10 Oct 2025 22:41:38 +0000 Subject: [PATCH 136/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251010.10 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25475.15 -> To Version 8.0.21-servicing.25510.10 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 18f5830b590d..9ce5fa642cdd 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 02c77be3927c..b2c5de05d498 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn bc1c3011064a493b0ca527df6fb7215e2e5cfa96 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 222d07c15846..bd9feaf7fdbd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -172,11 +172,11 @@ 8.0.21 - 8.0.21-servicing.25508.8 - 8.0.21-servicing.25508.8 - 8.0.21-servicing.25508.8 - 8.0.21-servicing.25508.8 - 8.0.21-servicing.25508.8 + 8.0.21-servicing.25510.10 + 8.0.21-servicing.25510.10 + 8.0.21-servicing.25510.10 + 8.0.21-servicing.25510.10 + 8.0.21-servicing.25510.10 8.0.21 From 7b6710a09d5afaa61d07a798b7d2da270e85ff52 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 10 Oct 2025 22:41:50 +0000 Subject: [PATCH 137/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251010.10 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25475.15 -> To Version 8.0.21-servicing.25510.10 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.21 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index b6330ed13e75..bf673e3e622a 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 80289f17cf43..d7ce22a9b8a3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 066e272db1522826e79de688b708eee843c4f6aa + 0a1d37af924ce998f2bd721fb237480f8e38a10a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 650d7f8745fc..37a8d5a01b0e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -171,11 +171,11 @@ 8.0.21 - 8.0.21-servicing.25508.8 - 8.0.21-servicing.25508.8 - 8.0.21-servicing.25508.8 - 8.0.21-servicing.25508.8 - 8.0.21-servicing.25508.8 + 8.0.21-servicing.25510.10 + 8.0.21-servicing.25510.10 + 8.0.21-servicing.25510.10 + 8.0.21-servicing.25510.10 + 8.0.21-servicing.25510.10 8.0.21 From 68c7d2b72caac892988c249f8943dc23cf2c2dee Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 11 Oct 2025 00:09:28 +0000 Subject: [PATCH 138/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251010.8 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25507.14 -> To Version 8.0.22-servicing.25510.8 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 Dependency coherency updates On relative base path root Microsoft.NET.Workload.Emscripten.Current.Manifest-8.0.100 From Version 8.0.21 -> To Version 8.0.22 (parent: Microsoft.NETCore.App.Runtime.win-x64) --- NuGet.config | 6 +++--- eng/Version.Details.xml | 30 +++++++++++++++--------------- eng/Versions.props | 6 +++--- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/NuGet.config b/NuGet.config index bf673e3e622a..818c2c39f7e0 100644 --- a/NuGet.config +++ b/NuGet.config @@ -3,7 +3,7 @@ - + @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 469a4a15c322..c302235a3988 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,11 +49,11 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://github.com/dotnet/emsdk - 42532a7524749ad5d48d1820eaa7d4ab7e77faa6 + e559274b6cbfa4d246d108332b181c55ef1c9b3f https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 1ddb9d09ed42..ae28c79d9166 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.22 - 8.0.22-servicing.25507.14 + 8.0.22-servicing.25510.8 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25507.14 + 8.0.22-servicing.25510.8 8.0.0 8.0.1 8.0.3 @@ -230,7 +230,7 @@ - 8.0.21 + 8.0.22 $(MicrosoftNETWorkloadEmscriptenCurrentManifest80100PackageVersion) 8.0.100$([System.Text.RegularExpressions.Regex]::Match($(EmscriptenWorkloadManifestVersion), `-rtm|-[A-z]*\.*\d*`)) From 31e0acd94e90ce7e740798c4378913d1a3bebd9c Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 11 Oct 2025 00:09:28 +0000 Subject: [PATCH 139/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251010.8 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25507.14 -> To Version 8.0.22-servicing.25510.8 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 Dependency coherency updates On relative base path root Microsoft.NET.Workload.Emscripten.Current.Manifest-8.0.100 From Version 8.0.21 -> To Version 8.0.22 (parent: Microsoft.NETCore.App.Runtime.win-x64) --- NuGet.config | 6 +++--- eng/Version.Details.xml | 30 +++++++++++++++--------------- eng/Versions.props | 6 +++--- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/NuGet.config b/NuGet.config index 958554fb0c71..79219dd6d6dd 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + @@ -22,7 +22,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 37c373bcb57a..8a1c86b21435 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,11 +49,11 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://github.com/dotnet/emsdk - 42532a7524749ad5d48d1820eaa7d4ab7e77faa6 + e559274b6cbfa4d246d108332b181c55ef1c9b3f https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 429ba70fec51..900bc09542cb 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.22 - 8.0.22-servicing.25507.14 + 8.0.22-servicing.25510.8 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25507.14 + 8.0.22-servicing.25510.8 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 @@ -229,7 +229,7 @@ - 8.0.21 + 8.0.22 $(MicrosoftNETWorkloadEmscriptenCurrentManifest80100PackageVersion) 8.0.100$([System.Text.RegularExpressions.Regex]::Match($(EmscriptenWorkloadManifestVersion), `-rtm|-[A-z]*\.*\d*`)) From 759e1e2e965ab5f5e84159eb3a410c85b87ba4fd Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 11 Oct 2025 00:09:31 +0000 Subject: [PATCH 140/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251010.8 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25507.14 -> To Version 8.0.22-servicing.25510.8 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 Dependency coherency updates On relative base path root Microsoft.NET.Workload.Emscripten.Current.Manifest-8.0.100 From Version 8.0.21 -> To Version 8.0.22 (parent: Microsoft.NETCore.App.Runtime.win-x64) --- NuGet.config | 6 +++--- eng/Version.Details.xml | 30 +++++++++++++++--------------- eng/Versions.props | 6 +++--- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/NuGet.config b/NuGet.config index 9ce5fa642cdd..a3315a68a1ad 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + @@ -22,7 +22,7 @@ - + @@ -63,7 +63,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b2c5de05d498..45e29e81fbc9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,11 +49,11 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 - + https://github.com/dotnet/emsdk - 42532a7524749ad5d48d1820eaa7d4ab7e77faa6 + e559274b6cbfa4d246d108332b181c55ef1c9b3f https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f8f07a0ad92f9efe58458892b4316bdd857d6b3f + 6ec19f7d7394f7151e952b5b8866a729dd2a0676 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 7832e3aae60f..2d7a62c79599 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.22 - 8.0.22-servicing.25507.14 + 8.0.22-servicing.25510.8 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25507.14 + 8.0.22-servicing.25510.8 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 @@ -231,7 +231,7 @@ - 8.0.21 + 8.0.22 $(MicrosoftNETWorkloadEmscriptenCurrentManifest80100PackageVersion) 8.0.100$([System.Text.RegularExpressions.Regex]::Match($(EmscriptenWorkloadManifestVersion), `-rtm|-[A-z]*\.*\d*`)) From d5f10e532a904ebdb226f36bf5c4937bbb044cc0 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 11 Oct 2025 00:44:42 +0000 Subject: [PATCH 141/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251010.4 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25507.8 -> To Version 8.0.22-servicing.25510.4 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.21-servicing.25475.4 -> To Version 8.0.22-servicing.25510.3 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 818c2c39f7e0..bc866e0b33c7 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c302235a3988..86052d115ee2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9df853fd82c6182d404d8422d9c4f027c66d6553 + c50267b2fb942c6ece9a2030e05680d383f6e354 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9df853fd82c6182d404d8422d9c4f027c66d6553 + c50267b2fb942c6ece9a2030e05680d383f6e354 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9df853fd82c6182d404d8422d9c4f027c66d6553 + c50267b2fb942c6ece9a2030e05680d383f6e354 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9df853fd82c6182d404d8422d9c4f027c66d6553 + c50267b2fb942c6ece9a2030e05680d383f6e354 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 3ff72f664fd6e585b4b61fe5d79f33255aca5d6c + e529dd730582d90d2fae6e372a7cde6a4ba47757 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index ae28c79d9166..cc747db0ea15 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -186,7 +186,7 @@ - 8.0.21-servicing.25475.4 + 8.0.22-servicing.25510.3 From 6b4eb87b95d6f894d51d4c88f85dcb3aa796bf42 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 11 Oct 2025 00:44:44 +0000 Subject: [PATCH 142/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251010.4 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25507.8 -> To Version 8.0.22-servicing.25510.4 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.21-servicing.25475.4 -> To Version 8.0.22-servicing.25510.3 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index a3315a68a1ad..63cc860c9ebb 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 45e29e81fbc9..7ef3a6dabef1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9df853fd82c6182d404d8422d9c4f027c66d6553 + c50267b2fb942c6ece9a2030e05680d383f6e354 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9df853fd82c6182d404d8422d9c4f027c66d6553 + c50267b2fb942c6ece9a2030e05680d383f6e354 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9df853fd82c6182d404d8422d9c4f027c66d6553 + c50267b2fb942c6ece9a2030e05680d383f6e354 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9df853fd82c6182d404d8422d9c4f027c66d6553 + c50267b2fb942c6ece9a2030e05680d383f6e354 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 3ff72f664fd6e585b4b61fe5d79f33255aca5d6c + e529dd730582d90d2fae6e372a7cde6a4ba47757 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 2d7a62c79599..a469785a7ab6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -187,7 +187,7 @@ - 8.0.21-servicing.25475.4 + 8.0.22-servicing.25510.3 From cfdbb4e6a542a20da34552fee512b76566a99fa4 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 11 Oct 2025 00:44:48 +0000 Subject: [PATCH 143/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251010.4 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25507.8 -> To Version 8.0.22-servicing.25510.4 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.21-servicing.25475.4 -> To Version 8.0.22-servicing.25510.3 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 79219dd6d6dd..0245775f08ab 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8a1c86b21435..156c0bf28243 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9df853fd82c6182d404d8422d9c4f027c66d6553 + c50267b2fb942c6ece9a2030e05680d383f6e354 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9df853fd82c6182d404d8422d9c4f027c66d6553 + c50267b2fb942c6ece9a2030e05680d383f6e354 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9df853fd82c6182d404d8422d9c4f027c66d6553 + c50267b2fb942c6ece9a2030e05680d383f6e354 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9df853fd82c6182d404d8422d9c4f027c66d6553 + c50267b2fb942c6ece9a2030e05680d383f6e354 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 3ff72f664fd6e585b4b61fe5d79f33255aca5d6c + e529dd730582d90d2fae6e372a7cde6a4ba47757 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 900bc09542cb..19fd31646378 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -185,7 +185,7 @@ - 8.0.21-servicing.25475.4 + 8.0.22-servicing.25510.3 From 0ffee2958d92c65c7a619a3016a6c73e89dfdfa8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 11 Oct 2025 02:02:08 +0000 Subject: [PATCH 144/392] Update dependencies from https://github.com/dotnet/templating build 20251010.12 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.318-servicing.25465.8 -> To Version 8.0.319-servicing.25510.12 Microsoft.TemplateEngine.Abstractions From Version 8.0.318 -> To Version 8.0.319 --- NuGet.config | 2 +- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/NuGet.config b/NuGet.config index af0bd64e6009..e818620abfd0 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 22c26ddbf2f7..b2b88db8f559 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/templating - ded6af19f7c7476879e280df3407ce1d16b2f997 + 48975a32b817268bc046f006657d876400d463e0 - + https://github.com/dotnet/templating - ded6af19f7c7476879e280df3407ce1d16b2f997 + 48975a32b817268bc046f006657d876400d463e0 - + https://github.com/dotnet/templating - ded6af19f7c7476879e280df3407ce1d16b2f997 + 48975a32b817268bc046f006657d876400d463e0 diff --git a/eng/Versions.props b/eng/Versions.props index 3bae77fdb25b..4f267917cadf 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -143,13 +143,13 @@ - 8.0.318 + 8.0.319 $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.318-servicing.25465.8 + 8.0.319-servicing.25510.12 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From f51809514b3a7abf1946a2e79f4c3914d219ca18 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Mon, 13 Oct 2025 16:35:05 -0700 Subject: [PATCH 145/392] Change StartAndPopulateDockerRegistry to synchronous --- .../DockerRegistryManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs index bceb7393c5bd..01126a292aa8 100644 --- a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs +++ b/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs @@ -27,7 +27,7 @@ public class DockerRegistryManager private static string RegistryImageToUse => SDK_AzureContainerRegistryImage; - public static async Task StartAndPopulateDockerRegistry(ITestOutputHelper testOutput) + public static void StartAndPopulateDockerRegistry(ITestOutputHelper testOutput) { using TestLoggerFactory loggerFactory = new(testOutput); From 1e439096f017f6ea00f9087e19b81f86da033cc4 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 05:40:49 +0000 Subject: [PATCH 146/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251013.14 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25507.14 -> To Version 8.0.22-servicing.25513.14 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index bc866e0b33c7..34741a3edeaf 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 86052d115ee2..c4e79ed7c37e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index cc747db0ea15..e86d3e570960 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.22 - 8.0.22-servicing.25510.8 + 8.0.22-servicing.25513.14 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25510.8 + 8.0.22-servicing.25513.14 8.0.0 8.0.1 8.0.3 From 269c941f73509fef03a6d263b6f3e938bd56ad5c Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 05:40:52 +0000 Subject: [PATCH 147/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251013.14 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25507.14 -> To Version 8.0.22-servicing.25513.14 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 63cc860c9ebb..ee30e48a23f9 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -63,7 +63,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7ef3a6dabef1..dc171195036c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index a469785a7ab6..af2f935aa713 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.22 - 8.0.22-servicing.25510.8 + 8.0.22-servicing.25513.14 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25510.8 + 8.0.22-servicing.25513.14 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From 7004d8f45566604b7f3423e32826ed1226f30f60 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 05:40:56 +0000 Subject: [PATCH 148/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251013.14 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25507.14 -> To Version 8.0.22-servicing.25513.14 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0245775f08ab..1e29d1b63afb 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 156c0bf28243..3ec5646bde25 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6ec19f7d7394f7151e952b5b8866a729dd2a0676 + bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 19fd31646378..9c65b34adf14 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.22 - 8.0.22-servicing.25510.8 + 8.0.22-servicing.25513.14 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25510.8 + 8.0.22-servicing.25513.14 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From ea354377105e34b19a9abf0adc0e1f03e153748d Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 13:04:04 +0000 Subject: [PATCH 149/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251014.5 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25510.10 -> To Version 8.0.22-servicing.25514.5 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 72 ++++++++++++++++++++--------------------- eng/Versions.props | 16 ++++----- 3 files changed, 46 insertions(+), 46 deletions(-) diff --git a/NuGet.config b/NuGet.config index 1e29d1b63afb..3a27ee35bc2d 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3ec5646bde25..1c99c7455cdc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 https://github.com/nuget/nuget.client @@ -248,50 +248,50 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-wpf e529dd730582d90d2fae6e372a7cde6a4ba47757 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 https://github.com/dotnet/razor @@ -306,21 +306,21 @@ https://github.com/dotnet/razor 09ca88197916e545aefea53f16ed1b266644cde9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 https://github.com/dotnet/xdt @@ -437,9 +437,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 9c65b34adf14..c5296eb45d81 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -66,7 +66,7 @@ 8.0.22 8.0.0 8.0.0 - 8.0.21 + 8.0.22 8.0.0 8.0.0 8.0.0 @@ -169,13 +169,13 @@ - 8.0.21 - 8.0.21-servicing.25510.10 - 8.0.21-servicing.25510.10 - 8.0.21-servicing.25510.10 - 8.0.21-servicing.25510.10 - 8.0.21-servicing.25510.10 - 8.0.21 + 8.0.22 + 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.5 + 8.0.22 From b69591d7583a3ba7cebdc1b1f199c2e93d9f9a2c Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 13:04:05 +0000 Subject: [PATCH 150/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251014.5 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25510.10 -> To Version 8.0.22-servicing.25514.5 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 72 ++++++++++++++++++++--------------------- eng/Versions.props | 16 ++++----- 3 files changed, 46 insertions(+), 46 deletions(-) diff --git a/NuGet.config b/NuGet.config index ee30e48a23f9..e76b9d84e8d6 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index dc171195036c..2659a792a700 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn bc1c3011064a493b0ca527df6fb7215e2e5cfa96 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 https://github.com/nuget/nuget.client @@ -248,50 +248,50 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-wpf e529dd730582d90d2fae6e372a7cde6a4ba47757 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 https://github.com/dotnet/razor @@ -306,21 +306,21 @@ https://github.com/dotnet/razor c937db618f8c8739c6fa66ab4ca541344a468fdc - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 https://github.com/dotnet/xdt @@ -437,9 +437,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index af2f935aa713..ba6deeb3291f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -66,7 +66,7 @@ 8.0.22 8.0.0 8.0.0 - 8.0.21 + 8.0.22 8.0.0 8.0.0 8.0.0 @@ -171,13 +171,13 @@ - 8.0.21 - 8.0.21-servicing.25510.10 - 8.0.21-servicing.25510.10 - 8.0.21-servicing.25510.10 - 8.0.21-servicing.25510.10 - 8.0.21-servicing.25510.10 - 8.0.21 + 8.0.22 + 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.5 + 8.0.22 From 772dc39829a4b30b76974be49d2858fcddf4cc27 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 13:04:10 +0000 Subject: [PATCH 151/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251014.5 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.21-servicing.25510.10 -> To Version 8.0.22-servicing.25514.5 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.21 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 72 ++++++++++++++++++++--------------------- eng/Versions.props | 16 ++++----- 3 files changed, 46 insertions(+), 46 deletions(-) diff --git a/NuGet.config b/NuGet.config index 34741a3edeaf..1f83da7d6bca 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c4e79ed7c37e..b9b51eb79942 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -248,50 +248,50 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-wpf e529dd730582d90d2fae6e372a7cde6a4ba47757 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 https://github.com/dotnet/razor @@ -306,21 +306,21 @@ https://github.com/dotnet/razor 4c8bb4ff79523da1aa8ffbf2834ede5118f73d60 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 https://github.com/dotnet/xdt @@ -437,9 +437,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a1d37af924ce998f2bd721fb237480f8e38a10a + 55df982a19c168298e6f599ae550ab5c5e195ef6 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index e86d3e570960..19d856e90f45 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -63,7 +63,7 @@ 8.0.22 8.0.0 8.0.0 - 8.0.21 + 8.0.22 8.0.0 8.0.0 8.0.0 @@ -170,13 +170,13 @@ - 8.0.21 - 8.0.21-servicing.25510.10 - 8.0.21-servicing.25510.10 - 8.0.21-servicing.25510.10 - 8.0.21-servicing.25510.10 - 8.0.21-servicing.25510.10 - 8.0.21 + 8.0.22 + 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.5 + 8.0.22 From e2b3bfdf654a1f9867368d76b0c5caa4c2fbd8de Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 16:09:45 +0000 Subject: [PATCH 152/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251014.1 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25507.8 -> To Version 8.0.22-servicing.25514.1 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.21-servicing.25475.4 -> To Version 8.0.22-servicing.25514.4 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 1f83da7d6bca..603bd8e1b1b4 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b9b51eb79942..64408aca9744 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c50267b2fb942c6ece9a2030e05680d383f6e354 + 2a172fbd1b906a5f43444281a5b409e38a7a9c63 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c50267b2fb942c6ece9a2030e05680d383f6e354 + 2a172fbd1b906a5f43444281a5b409e38a7a9c63 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c50267b2fb942c6ece9a2030e05680d383f6e354 + 2a172fbd1b906a5f43444281a5b409e38a7a9c63 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c50267b2fb942c6ece9a2030e05680d383f6e354 + 2a172fbd1b906a5f43444281a5b409e38a7a9c63 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - e529dd730582d90d2fae6e372a7cde6a4ba47757 + edb5f15973d343fba7316ebea906c4b9108e2303 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 19d856e90f45..51dd1a2a15cf 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -186,7 +186,7 @@ - 8.0.22-servicing.25510.3 + 8.0.22-servicing.25514.4 From 36ff72041697ef91930c1d75d210537be8ba67a8 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 16:09:48 +0000 Subject: [PATCH 153/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251014.1 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25507.8 -> To Version 8.0.22-servicing.25514.1 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.21-servicing.25475.4 -> To Version 8.0.22-servicing.25514.4 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 3a27ee35bc2d..d2657f57bd5c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1c99c7455cdc..04221d5aa7dd 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c50267b2fb942c6ece9a2030e05680d383f6e354 + 2a172fbd1b906a5f43444281a5b409e38a7a9c63 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c50267b2fb942c6ece9a2030e05680d383f6e354 + 2a172fbd1b906a5f43444281a5b409e38a7a9c63 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c50267b2fb942c6ece9a2030e05680d383f6e354 + 2a172fbd1b906a5f43444281a5b409e38a7a9c63 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c50267b2fb942c6ece9a2030e05680d383f6e354 + 2a172fbd1b906a5f43444281a5b409e38a7a9c63 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - e529dd730582d90d2fae6e372a7cde6a4ba47757 + edb5f15973d343fba7316ebea906c4b9108e2303 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index c5296eb45d81..a9f4f2f4629f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -185,7 +185,7 @@ - 8.0.22-servicing.25510.3 + 8.0.22-servicing.25514.4 From e3526b37fe6d91fea3473e0328ea0bf03607a1f9 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 16:10:13 +0000 Subject: [PATCH 154/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251014.1 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25507.8 -> To Version 8.0.22-servicing.25514.1 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.21-servicing.25475.4 -> To Version 8.0.22-servicing.25514.4 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index e76b9d84e8d6..e163bcaa8c31 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2659a792a700..8240885dbc3a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c50267b2fb942c6ece9a2030e05680d383f6e354 + 2a172fbd1b906a5f43444281a5b409e38a7a9c63 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c50267b2fb942c6ece9a2030e05680d383f6e354 + 2a172fbd1b906a5f43444281a5b409e38a7a9c63 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c50267b2fb942c6ece9a2030e05680d383f6e354 + 2a172fbd1b906a5f43444281a5b409e38a7a9c63 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - c50267b2fb942c6ece9a2030e05680d383f6e354 + 2a172fbd1b906a5f43444281a5b409e38a7a9c63 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - e529dd730582d90d2fae6e372a7cde6a4ba47757 + edb5f15973d343fba7316ebea906c4b9108e2303 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index ba6deeb3291f..52b9fc05dff3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -187,7 +187,7 @@ - 8.0.22-servicing.25510.3 + 8.0.22-servicing.25514.4 From ee5a0eaee2cf5529784d163e8d3f8bfba8c0df26 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 20:37:26 +0000 Subject: [PATCH 155/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251014.12 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.5 -> To Version 8.0.22-servicing.25514.12 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index cc984aada9e2..cd8176c188c5 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 703ce0881792..01f077cab8be 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index defec0996f22..eb6a4ae2ea8c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -171,11 +171,11 @@ 8.0.22 - 8.0.22-servicing.25514.5 - 8.0.22-servicing.25514.5 - 8.0.22-servicing.25514.5 - 8.0.22-servicing.25514.5 - 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.12 + 8.0.22-servicing.25514.12 + 8.0.22-servicing.25514.12 + 8.0.22-servicing.25514.12 + 8.0.22-servicing.25514.12 8.0.22 From eb0e1935d21396a8bdd7576afe1e9434fc6ddd87 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 20:37:27 +0000 Subject: [PATCH 156/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251014.12 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.5 -> To Version 8.0.22-servicing.25514.12 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index c47bc91e08e6..465a3715776c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5b0776426936..a3e77840f725 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn bc1c3011064a493b0ca527df6fb7215e2e5cfa96 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 93f70db90114..ebac601016ca 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -172,11 +172,11 @@ 8.0.22 - 8.0.22-servicing.25514.5 - 8.0.22-servicing.25514.5 - 8.0.22-servicing.25514.5 - 8.0.22-servicing.25514.5 - 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.12 + 8.0.22-servicing.25514.12 + 8.0.22-servicing.25514.12 + 8.0.22-servicing.25514.12 + 8.0.22-servicing.25514.12 8.0.22 From 264ab606ec30e94011047f93c28baeb6fd0589e8 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 20:37:29 +0000 Subject: [PATCH 157/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251014.12 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.5 -> To Version 8.0.22-servicing.25514.12 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index eb408853d10c..5da2fc639590 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 239a948e84e8..03e817b103b9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 55df982a19c168298e6f599ae550ab5c5e195ef6 + c9d28f3571d7c78b071398ba134c6b0e19e07e46 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 0f23c0938aaa..af125ad53f3c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -169,11 +169,11 @@ 8.0.22 - 8.0.22-servicing.25514.5 - 8.0.22-servicing.25514.5 - 8.0.22-servicing.25514.5 - 8.0.22-servicing.25514.5 - 8.0.22-servicing.25514.5 + 8.0.22-servicing.25514.12 + 8.0.22-servicing.25514.12 + 8.0.22-servicing.25514.12 + 8.0.22-servicing.25514.12 + 8.0.22-servicing.25514.12 8.0.22 From 069ad4d121c1bbf26f3470736ee2e4a4b7f2ec46 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 03:27:57 +0000 Subject: [PATCH 158/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251014.13 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25513.14 -> To Version 8.0.22-servicing.25514.13 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index cd8176c188c5..01e1e23ad651 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 01f077cab8be..a5bda7454829 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index eb6a4ae2ea8c..9000c349b3b8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.22 - 8.0.22-servicing.25513.14 + 8.0.22-servicing.25514.13 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25513.14 + 8.0.22-servicing.25514.13 8.0.0 8.0.1 8.0.3 From f0116723bcd70bae18615b4707ab1cb938a4f35e Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 03:27:57 +0000 Subject: [PATCH 159/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251014.13 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25513.14 -> To Version 8.0.22-servicing.25514.13 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 465a3715776c..703b891207fd 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -63,7 +63,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a3e77840f725..d43a25aa5549 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index ebac601016ca..902b3dff3067 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.22 - 8.0.22-servicing.25513.14 + 8.0.22-servicing.25514.13 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25513.14 + 8.0.22-servicing.25514.13 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From 7a7523de6901b5e9000d8966feee663cf1b6984e Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 03:42:55 +0000 Subject: [PATCH 160/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251014.13 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25513.14 -> To Version 8.0.22-servicing.25514.13 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 5da2fc639590..4b2ce895d69c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 03e817b103b9..783cf7d8f24c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf170a7fb8be5e094a798dd6c09f9b8e32dfd92a + d5074a2d0ef5250241f9d7493ae02f424777f3aa https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index af125ad53f3c..b32bec509e4e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -51,12 +51,12 @@ 8.0.22 - 8.0.22-servicing.25513.14 + 8.0.22-servicing.25514.13 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25513.14 + 8.0.22-servicing.25514.13 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From a0ac186a6e19af9a17ddea5a7430e33b59e8c716 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Oct 2025 11:25:54 -0700 Subject: [PATCH 161/392] [release/8.0.3xx] Remove source-build job dependency (#51271) Co-authored-by: Nikola Milosavljevic --- .vsts-ci.yml | 1 - .vsts-pr.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index 2cb035d0030a..998d0b5ed09a 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -296,7 +296,6 @@ extends: publishAssetsImmediately: true dependsOn: - Windows_NT - - Source_Build_Managed pool: name: $(DncEngInternalBuildPool) image: 1es-windows-2022 diff --git a/.vsts-pr.yml b/.vsts-pr.yml index 82da497570fc..54dbd0c29aa3 100644 --- a/.vsts-pr.yml +++ b/.vsts-pr.yml @@ -177,7 +177,6 @@ stages: publishAssetsImmediately: true dependsOn: - Windows_NT - - Source_Build_Managed pool: name: $(DncEngInternalBuildPool) demands: ImageOverride -equals windows.vs2019.amd64 From f605091b8d40c9b0fc3470ddc99803163b7c9e05 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Oct 2025 11:33:57 -0700 Subject: [PATCH 162/392] [release/8.0.3xx] Stop building source-build in non-1xx branches (#51251) Co-authored-by: Nikola Milosavljevic --- .vsts-ci.yml | 6 ------ .vsts-pr.yml | 6 ------ 2 files changed, 12 deletions(-) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index 998d0b5ed09a..6da9286fa206 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -115,12 +115,6 @@ extends: value: real - name: _Test value: '' - - template: /eng/common/templates-official/job/source-build.yml@self - parameters: - enableInternalSources: true - platform: - name: 'Managed' - container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream9' - ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}: - template: /eng/build.yml@self parameters: diff --git a/.vsts-pr.yml b/.vsts-pr.yml index 54dbd0c29aa3..930b8ed3983d 100644 --- a/.vsts-pr.yml +++ b/.vsts-pr.yml @@ -85,12 +85,6 @@ stages: ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: _SignType: real _Test: '' - - template: /eng/common/templates/job/source-build.yml - parameters: - enableInternalSources: true - platform: - name: 'Managed' - container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream9' - ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}: - template: /eng/build-pr.yml parameters: From 3ca94e42a235fcf076c989b663117b4951ef42cb Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 15 Oct 2025 18:40:27 +0000 Subject: [PATCH 163/392] Update dependencies from https://github.com/dotnet/arcade build 20251015.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25504.1 -> To Version 8.0.0-beta.25515.1 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 6 +++--- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9a29b83c54b3..4c1e8aa772b4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 + 6544413e02741855b701468aa8afc6cf8ca62c72 - + https://github.com/dotnet/arcade - 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 + 6544413e02741855b701468aa8afc6cf8ca62c72 - + https://github.com/dotnet/arcade - 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 + 6544413e02741855b701468aa8afc6cf8ca62c72 - + https://github.com/dotnet/arcade - 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 + 6544413e02741855b701468aa8afc6cf8ca62c72 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 31145fa4c936..27c55bc6b0f1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25504.1 + 8.0.0-beta.25515.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -211,7 +211,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25504.1 + 8.0.0-beta.25515.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 0b7ae0dd1ace..f0acd9807f7f 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "tools": { - "dotnet": "8.0.120", + "dotnet": "8.0.121", "runtimes": { "dotnet": [ "$(VSRedistCommonNetCoreSharedFrameworkx6480PackageVersion)" @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25504.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25504.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25515.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25515.1" } } From 81b7f0483ddede7467dc277dd7362b6f95e3a52e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 15 Oct 2025 18:41:46 +0000 Subject: [PATCH 164/392] Update dependencies from https://github.com/dotnet/arcade build 20251015.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25504.1 -> To Version 8.0.0-beta.25515.1 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 6 +++--- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b2b88db8f559..9c1fd186b453 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 + 6544413e02741855b701468aa8afc6cf8ca62c72 - + https://github.com/dotnet/arcade - 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 + 6544413e02741855b701468aa8afc6cf8ca62c72 - + https://github.com/dotnet/arcade - 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 + 6544413e02741855b701468aa8afc6cf8ca62c72 - + https://github.com/dotnet/arcade - 3edea53c9b10e4bc63de863d71a05d47d9bb5b69 + 6544413e02741855b701468aa8afc6cf8ca62c72 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 9104f5ee6850..f97ef3754140 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -35,7 +35,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25504.1 + 8.0.0-beta.25515.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -214,7 +214,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25504.1 + 8.0.0-beta.25515.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 0b7ae0dd1ace..f0acd9807f7f 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "tools": { - "dotnet": "8.0.120", + "dotnet": "8.0.121", "runtimes": { "dotnet": [ "$(VSRedistCommonNetCoreSharedFrameworkx6480PackageVersion)" @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25504.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25504.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25515.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25515.1" } } From 4440388a281a2c445b9afb1cfa9e34267e193d85 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 18:51:41 +0000 Subject: [PATCH 165/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251015.4 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.12 -> To Version 8.0.22-servicing.25515.4 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 01e1e23ad651..380974eecb95 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a5bda7454829..c5929cd1e727 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 9000c349b3b8..4ddbde6111fa 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -171,11 +171,11 @@ 8.0.22 - 8.0.22-servicing.25514.12 - 8.0.22-servicing.25514.12 - 8.0.22-servicing.25514.12 - 8.0.22-servicing.25514.12 - 8.0.22-servicing.25514.12 + 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.4 8.0.22 From 7b55ade08b75e577c6df9cffd26f24b9fc5b0689 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 18:52:01 +0000 Subject: [PATCH 166/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251015.4 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.12 -> To Version 8.0.22-servicing.25515.4 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 4b2ce895d69c..58e7e55e63d4 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 783cf7d8f24c..aa66ba496d31 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index b32bec509e4e..88b1108234aa 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -169,11 +169,11 @@ 8.0.22 - 8.0.22-servicing.25514.12 - 8.0.22-servicing.25514.12 - 8.0.22-servicing.25514.12 - 8.0.22-servicing.25514.12 - 8.0.22-servicing.25514.12 + 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.4 8.0.22 From 600e85761eca35217c200e4e4813b8c22f99bae6 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 18:52:08 +0000 Subject: [PATCH 167/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251015.4 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.12 -> To Version 8.0.22-servicing.25515.4 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 703b891207fd..abc362c7582b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d43a25aa5549..95d0e6ac7a98 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn bc1c3011064a493b0ca527df6fb7215e2e5cfa96 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - c9d28f3571d7c78b071398ba134c6b0e19e07e46 + 86099b079f21fb4021b767bce2d0c722d6cd41c0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 902b3dff3067..56fb32dfb9b8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -172,11 +172,11 @@ 8.0.22 - 8.0.22-servicing.25514.12 - 8.0.22-servicing.25514.12 - 8.0.22-servicing.25514.12 - 8.0.22-servicing.25514.12 - 8.0.22-servicing.25514.12 + 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.4 8.0.22 From 95ab857a2374c36cfc4a22cdc1a65846cdbaa6b3 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 19:13:06 +0000 Subject: [PATCH 168/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251015.2 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25514.1 -> To Version 8.0.22-servicing.25515.2 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.22-servicing.25514.4 -> To Version 8.0.22-servicing.25515.3 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 380974eecb95..07ad98dce13b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c5929cd1e727..b0e140c82e58 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2a172fbd1b906a5f43444281a5b409e38a7a9c63 + 9bded878389ee6ef492429de6e572e0c816525e9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2a172fbd1b906a5f43444281a5b409e38a7a9c63 + 9bded878389ee6ef492429de6e572e0c816525e9 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2a172fbd1b906a5f43444281a5b409e38a7a9c63 + 9bded878389ee6ef492429de6e572e0c816525e9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2a172fbd1b906a5f43444281a5b409e38a7a9c63 + 9bded878389ee6ef492429de6e572e0c816525e9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - edb5f15973d343fba7316ebea906c4b9108e2303 + 0e5a1fb26eea00d3ecd8a024520af0deb6d9ece8 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 4ddbde6111fa..17dda28f7b7e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -186,7 +186,7 @@ - 8.0.22-servicing.25514.4 + 8.0.22-servicing.25515.3 From 405e799c5073af4cb1914c4c5e6d931a87c5ba5a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 19:13:08 +0000 Subject: [PATCH 169/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251015.2 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25514.1 -> To Version 8.0.22-servicing.25515.2 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.22-servicing.25514.4 -> To Version 8.0.22-servicing.25515.3 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 58e7e55e63d4..598f0c6cafb2 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index aa66ba496d31..46f25cd74533 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2a172fbd1b906a5f43444281a5b409e38a7a9c63 + 9bded878389ee6ef492429de6e572e0c816525e9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2a172fbd1b906a5f43444281a5b409e38a7a9c63 + 9bded878389ee6ef492429de6e572e0c816525e9 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2a172fbd1b906a5f43444281a5b409e38a7a9c63 + 9bded878389ee6ef492429de6e572e0c816525e9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2a172fbd1b906a5f43444281a5b409e38a7a9c63 + 9bded878389ee6ef492429de6e572e0c816525e9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - edb5f15973d343fba7316ebea906c4b9108e2303 + 0e5a1fb26eea00d3ecd8a024520af0deb6d9ece8 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 88b1108234aa..e309a1fa908f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -184,7 +184,7 @@ - 8.0.22-servicing.25514.4 + 8.0.22-servicing.25515.3 From 941222f0764f82bebdc353d1aa7f8ccc5715ca4d Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 19:13:09 +0000 Subject: [PATCH 170/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251015.2 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25514.1 -> To Version 8.0.22-servicing.25515.2 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.22-servicing.25514.4 -> To Version 8.0.22-servicing.25515.3 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index abc362c7582b..7e2e00770e52 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 95d0e6ac7a98..58ef703f192b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2a172fbd1b906a5f43444281a5b409e38a7a9c63 + 9bded878389ee6ef492429de6e572e0c816525e9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2a172fbd1b906a5f43444281a5b409e38a7a9c63 + 9bded878389ee6ef492429de6e572e0c816525e9 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2a172fbd1b906a5f43444281a5b409e38a7a9c63 + 9bded878389ee6ef492429de6e572e0c816525e9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 2a172fbd1b906a5f43444281a5b409e38a7a9c63 + 9bded878389ee6ef492429de6e572e0c816525e9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - edb5f15973d343fba7316ebea906c4b9108e2303 + 0e5a1fb26eea00d3ecd8a024520af0deb6d9ece8 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 56fb32dfb9b8..8920e26e019e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -187,7 +187,7 @@ - 8.0.22-servicing.25514.4 + 8.0.22-servicing.25515.3 From b07176023703cb863257589d015a570ff643c271 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 21:14:42 +0000 Subject: [PATCH 171/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251015.4 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25514.1 -> To Version 8.0.22-servicing.25515.4 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 07ad98dce13b..38dfcd5beafa 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b0e140c82e58..57cb66e2f0b3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,19 +230,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9bded878389ee6ef492429de6e572e0c816525e9 + 26207bcfaf14168a142b0b36a0d081fb192e5133 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9bded878389ee6ef492429de6e572e0c816525e9 + 26207bcfaf14168a142b0b36a0d081fb192e5133 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9bded878389ee6ef492429de6e572e0c816525e9 + 26207bcfaf14168a142b0b36a0d081fb192e5133 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9bded878389ee6ef492429de6e572e0c816525e9 + 26207bcfaf14168a142b0b36a0d081fb192e5133 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From 788a0af352c39fdda452733b5b73b478a3af648c Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 21:14:42 +0000 Subject: [PATCH 172/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251015.4 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25514.1 -> To Version 8.0.22-servicing.25515.4 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 598f0c6cafb2..d9969e42c5eb 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 46f25cd74533..114cfb2039cf 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,19 +230,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9bded878389ee6ef492429de6e572e0c816525e9 + 26207bcfaf14168a142b0b36a0d081fb192e5133 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9bded878389ee6ef492429de6e572e0c816525e9 + 26207bcfaf14168a142b0b36a0d081fb192e5133 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9bded878389ee6ef492429de6e572e0c816525e9 + 26207bcfaf14168a142b0b36a0d081fb192e5133 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9bded878389ee6ef492429de6e572e0c816525e9 + 26207bcfaf14168a142b0b36a0d081fb192e5133 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From 93e7ea4742cc00602f5c1e1132fae4a7a31e85e8 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 21:14:42 +0000 Subject: [PATCH 173/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251015.4 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25514.1 -> To Version 8.0.22-servicing.25515.4 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 7e2e00770e52..fdfab5c5c56b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 58ef703f192b..11bbf30e7d91 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,19 +230,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9bded878389ee6ef492429de6e572e0c816525e9 + 26207bcfaf14168a142b0b36a0d081fb192e5133 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9bded878389ee6ef492429de6e572e0c816525e9 + 26207bcfaf14168a142b0b36a0d081fb192e5133 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9bded878389ee6ef492429de6e572e0c816525e9 + 26207bcfaf14168a142b0b36a0d081fb192e5133 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 9bded878389ee6ef492429de6e572e0c816525e9 + 26207bcfaf14168a142b0b36a0d081fb192e5133 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From 69f56653a69f40f61171cebafb177d86f4eaf541 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 22:39:10 +0000 Subject: [PATCH 174/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251015.10 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25514.1 -> To Version 8.0.22-servicing.25515.10 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 38dfcd5beafa..365308f560bf 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 57cb66e2f0b3..33ba58d5790e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,19 +230,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 26207bcfaf14168a142b0b36a0d081fb192e5133 + cc9b6fd17be23353e778292b0a280d772f6a44a0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 26207bcfaf14168a142b0b36a0d081fb192e5133 + cc9b6fd17be23353e778292b0a280d772f6a44a0 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 26207bcfaf14168a142b0b36a0d081fb192e5133 + cc9b6fd17be23353e778292b0a280d772f6a44a0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 26207bcfaf14168a142b0b36a0d081fb192e5133 + cc9b6fd17be23353e778292b0a280d772f6a44a0 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From 9bacce2924b9739828ccd723df8a81b3d52613da Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 22:39:10 +0000 Subject: [PATCH 175/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251015.10 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25514.1 -> To Version 8.0.22-servicing.25515.10 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index d9969e42c5eb..aeeb8b5b99a9 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 114cfb2039cf..75059f0c4714 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,19 +230,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 26207bcfaf14168a142b0b36a0d081fb192e5133 + cc9b6fd17be23353e778292b0a280d772f6a44a0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 26207bcfaf14168a142b0b36a0d081fb192e5133 + cc9b6fd17be23353e778292b0a280d772f6a44a0 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 26207bcfaf14168a142b0b36a0d081fb192e5133 + cc9b6fd17be23353e778292b0a280d772f6a44a0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 26207bcfaf14168a142b0b36a0d081fb192e5133 + cc9b6fd17be23353e778292b0a280d772f6a44a0 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From f7ee419e3d308a8e4609db510c45e84d902e879d Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 22:39:11 +0000 Subject: [PATCH 176/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251015.10 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25514.1 -> To Version 8.0.22-servicing.25515.10 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index fdfab5c5c56b..236b76d7e76f 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 11bbf30e7d91..ec19ab36ec87 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,19 +230,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 26207bcfaf14168a142b0b36a0d081fb192e5133 + cc9b6fd17be23353e778292b0a280d772f6a44a0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 26207bcfaf14168a142b0b36a0d081fb192e5133 + cc9b6fd17be23353e778292b0a280d772f6a44a0 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 26207bcfaf14168a142b0b36a0d081fb192e5133 + cc9b6fd17be23353e778292b0a280d772f6a44a0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 26207bcfaf14168a142b0b36a0d081fb192e5133 + cc9b6fd17be23353e778292b0a280d772f6a44a0 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf From c6aea2c3214904730aa21137b5eba46bdb60b55b Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 23:46:27 +0000 Subject: [PATCH 177/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251015.13 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.12 -> To Version 8.0.22-servicing.25515.13 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 365308f560bf..10869720dd4e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 33ba58d5790e..46db50088bf2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 17dda28f7b7e..70a481972db7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -171,11 +171,11 @@ 8.0.22 - 8.0.22-servicing.25515.4 - 8.0.22-servicing.25515.4 - 8.0.22-servicing.25515.4 - 8.0.22-servicing.25515.4 - 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.13 8.0.22 From 486be2466240e17c5962ea03f4e3894b20667cb1 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 23:46:39 +0000 Subject: [PATCH 178/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251015.13 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.12 -> To Version 8.0.22-servicing.25515.13 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 236b76d7e76f..a2d422d2bd31 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ec19ab36ec87..cfb8a208661c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn bc1c3011064a493b0ca527df6fb7215e2e5cfa96 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 8920e26e019e..d932fed7b0c4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -172,11 +172,11 @@ 8.0.22 - 8.0.22-servicing.25515.4 - 8.0.22-servicing.25515.4 - 8.0.22-servicing.25515.4 - 8.0.22-servicing.25515.4 - 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.13 8.0.22 From 13081ce8f27abe0025433c2e289485fb10fc8785 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 23:46:40 +0000 Subject: [PATCH 179/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251015.13 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.12 -> To Version 8.0.22-servicing.25515.13 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index aeeb8b5b99a9..c0b6c44577b4 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 75059f0c4714..6908d8113925 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 86099b079f21fb4021b767bce2d0c722d6cd41c0 + 0a26df27832122d3f9d21dabc36c940cd044501f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index e309a1fa908f..3afab8b35385 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -169,11 +169,11 @@ 8.0.22 - 8.0.22-servicing.25515.4 - 8.0.22-servicing.25515.4 - 8.0.22-servicing.25515.4 - 8.0.22-servicing.25515.4 - 8.0.22-servicing.25515.4 + 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.13 8.0.22 From e504efbdade0a91662ef71d2a359e67ce182def2 Mon Sep 17 00:00:00 2001 From: Jacques Eloff Date: Wed, 15 Oct 2025 16:47:15 -0700 Subject: [PATCH 180/392] Update dotnet-templating package source URL --- NuGet.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NuGet.config b/NuGet.config index 9c223376df8e..0750e60f8360 100644 --- a/NuGet.config +++ b/NuGet.config @@ -25,7 +25,7 @@ - + From d0cd84169b3fb90ac083e69ddc11eb2f044f6987 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 16 Oct 2025 02:02:35 +0000 Subject: [PATCH 181/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20251015.4 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25507.1 -> To Version 8.0.0-alpha.1.25515.4 --- eng/Version.Details.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4c1e8aa772b4..db2078d94881 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - 7a3266db9e2b7422e8277f04932eff9b7064b66e + 4f39ba9e117ece1679a2bd4f2e8c188f914078e1 From 26172e555b305ae6e011dbe257657ddca55ead52 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 16 Oct 2025 02:02:51 +0000 Subject: [PATCH 182/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20251015.4 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25507.1 -> To Version 8.0.0-alpha.1.25515.4 --- eng/Version.Details.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9c1fd186b453..dbdfb457adaa 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - 7a3266db9e2b7422e8277f04932eff9b7064b66e + 4f39ba9e117ece1679a2bd4f2e8c188f914078e1 From 1c84be37c3696067185d2da497bfe8b5f94aca3f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 16 Oct 2025 02:37:58 +0000 Subject: [PATCH 183/392] Update dependencies from https://github.com/dotnet/templating build 20251015.2 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.122-servicing.25510.9 -> To Version 8.0.122-servicing.25515.2 Microsoft.TemplateEngine.Abstractions From Version 8.0.122 -> To Version 8.0.122 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index 79f603a908bb..120780d95426 100644 --- a/NuGet.config +++ b/NuGet.config @@ -24,7 +24,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4fd4905c39a0..cb931e977488 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - f76b42aa5b23046519be22cb52fe618be122fe8d + 0de6a742d1db82d3fbb5cfa65479a866c9af2603 - + https://github.com/dotnet/templating - f76b42aa5b23046519be22cb52fe618be122fe8d + 0de6a742d1db82d3fbb5cfa65479a866c9af2603 - + https://github.com/dotnet/templating - f76b42aa5b23046519be22cb52fe618be122fe8d + 0de6a742d1db82d3fbb5cfa65479a866c9af2603 diff --git a/eng/Versions.props b/eng/Versions.props index 646f793072bd..68dfce2a1c0e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -148,7 +148,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.122-servicing.25510.9 + 8.0.122-servicing.25515.2 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 7ad749d2f0fef2fc688c4dbf441cfaae5839652a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 16 Oct 2025 03:19:45 +0000 Subject: [PATCH 184/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251015.18 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.12 -> To Version 8.0.22-servicing.25515.18 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 10869720dd4e..6dee9c9ca5ac 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 46db50088bf2..1ef0406441d7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 70a481972db7..62a3f7377d0f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -171,11 +171,11 @@ 8.0.22 - 8.0.22-servicing.25515.13 - 8.0.22-servicing.25515.13 - 8.0.22-servicing.25515.13 - 8.0.22-servicing.25515.13 - 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.18 + 8.0.22-servicing.25515.18 + 8.0.22-servicing.25515.18 + 8.0.22-servicing.25515.18 + 8.0.22-servicing.25515.18 8.0.22 From 1e01eeddb6f0943607e75ae577b97320339dd70f Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 16 Oct 2025 03:19:47 +0000 Subject: [PATCH 185/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251015.18 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.12 -> To Version 8.0.22-servicing.25515.18 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index c0b6c44577b4..ec2760ee5376 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6908d8113925..5f022e65f9f4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 3afab8b35385..70de6ba1fe49 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -169,11 +169,11 @@ 8.0.22 - 8.0.22-servicing.25515.13 - 8.0.22-servicing.25515.13 - 8.0.22-servicing.25515.13 - 8.0.22-servicing.25515.13 - 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.18 + 8.0.22-servicing.25515.18 + 8.0.22-servicing.25515.18 + 8.0.22-servicing.25515.18 + 8.0.22-servicing.25515.18 8.0.22 From 6e933b19d788197bc4d043f128186634b3bff3d5 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 16 Oct 2025 03:19:48 +0000 Subject: [PATCH 186/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251015.18 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.12 -> To Version 8.0.22-servicing.25515.18 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index a2d422d2bd31..81a325a2d8d3 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cfb8a208661c..1d8eadc72a58 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn bc1c3011064a493b0ca527df6fb7215e2e5cfa96 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 0a26df27832122d3f9d21dabc36c940cd044501f + 4a279753026b4a3c25a54880739b46e11d8f3064 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index d932fed7b0c4..45da1d6f57ab 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -172,11 +172,11 @@ 8.0.22 - 8.0.22-servicing.25515.13 - 8.0.22-servicing.25515.13 - 8.0.22-servicing.25515.13 - 8.0.22-servicing.25515.13 - 8.0.22-servicing.25515.13 + 8.0.22-servicing.25515.18 + 8.0.22-servicing.25515.18 + 8.0.22-servicing.25515.18 + 8.0.22-servicing.25515.18 + 8.0.22-servicing.25515.18 8.0.22 From ea3f5e6b127ddd90275e326c918a117c9d12b371 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 16 Oct 2025 04:03:15 +0000 Subject: [PATCH 187/392] Update dependencies from https://github.com/dotnet/templating build 20251015.8 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.122-servicing.25510.9 -> To Version 8.0.122-servicing.25515.8 Microsoft.TemplateEngine.Abstractions From Version 8.0.122 -> To Version 8.0.122 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index 120780d95426..e81db371d1a2 100644 --- a/NuGet.config +++ b/NuGet.config @@ -24,7 +24,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cb931e977488..a1664896631c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 0de6a742d1db82d3fbb5cfa65479a866c9af2603 + 56b6fd07951fa6733694ed06accb8da0722f4c19 - + https://github.com/dotnet/templating - 0de6a742d1db82d3fbb5cfa65479a866c9af2603 + 56b6fd07951fa6733694ed06accb8da0722f4c19 - + https://github.com/dotnet/templating - 0de6a742d1db82d3fbb5cfa65479a866c9af2603 + 56b6fd07951fa6733694ed06accb8da0722f4c19 diff --git a/eng/Versions.props b/eng/Versions.props index 68dfce2a1c0e..53a39112ceed 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -148,7 +148,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.122-servicing.25515.2 + 8.0.122-servicing.25515.8 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From a4e5203b7f23ef2e4bf01d5f2df21de8f246301d Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 16 Oct 2025 23:16:59 +0000 Subject: [PATCH 188/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251016.7 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25513.14 -> To Version 8.0.22-servicing.25516.7 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 81a325a2d8d3..74058cf82854 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -63,7 +63,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1d8eadc72a58..16bab4defea6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 45da1d6f57ab..27260a35c82c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.22 - 8.0.22-servicing.25514.13 + 8.0.22-servicing.25516.7 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25514.13 + 8.0.22-servicing.25516.7 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From eb9726a2e47e553195cfd6c306d30c825cf7ca5b Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 16 Oct 2025 23:17:00 +0000 Subject: [PATCH 189/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251016.7 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25513.14 -> To Version 8.0.22-servicing.25516.7 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 6dee9c9ca5ac..335ad0f8d802 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1ef0406441d7..185cd8aa516e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 62a3f7377d0f..bd9ff26baf7d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.22 - 8.0.22-servicing.25514.13 + 8.0.22-servicing.25516.7 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25514.13 + 8.0.22-servicing.25516.7 8.0.0 8.0.1 8.0.3 From 5c566b61e0a4c2da7387f2050f75fb6969ccb142 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 16 Oct 2025 23:17:02 +0000 Subject: [PATCH 190/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251016.7 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25513.14 -> To Version 8.0.22-servicing.25516.7 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index ec2760ee5376..e9ef436bf8e5 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5f022e65f9f4..76c42f9112d2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d5074a2d0ef5250241f9d7493ae02f424777f3aa + f7ba9931b3a9e0089af5784efd975bf7fff01a6d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 70de6ba1fe49..3d0ec8085d08 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -51,12 +51,12 @@ 8.0.22 - 8.0.22-servicing.25514.13 + 8.0.22-servicing.25516.7 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25514.13 + 8.0.22-servicing.25516.7 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From e2ac2be0199e7fa417b47ba9b91b743339c4e820 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 17 Oct 2025 02:02:28 +0000 Subject: [PATCH 191/392] Update dependencies from https://github.com/dotnet/templating build 20251015.13 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.319-servicing.25510.12 -> To Version 8.0.319-servicing.25515.13 Microsoft.TemplateEngine.Abstractions From Version 8.0.319 -> To Version 8.0.319 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0750e60f8360..55244affe97c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -25,7 +25,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index dfa274d97198..743641019c3b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 48975a32b817268bc046f006657d876400d463e0 + 1ad703e0ba0eb372257646309b35cb6efb0d97e9 - + https://github.com/dotnet/templating - 48975a32b817268bc046f006657d876400d463e0 + 1ad703e0ba0eb372257646309b35cb6efb0d97e9 - + https://github.com/dotnet/templating - 48975a32b817268bc046f006657d876400d463e0 + 1ad703e0ba0eb372257646309b35cb6efb0d97e9 diff --git a/eng/Versions.props b/eng/Versions.props index 292855c75814..5db15c811a90 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -146,7 +146,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.319-servicing.25510.12 + 8.0.319-servicing.25515.13 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From cb1d7e6fb78cbeb56c99684eeb6eba3e98d69598 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 04:57:34 +0000 Subject: [PATCH 192/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251016.18 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25513.14 -> To Version 8.0.22-servicing.25516.18 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 Dependency coherency updates On relative base path root Microsoft.NET.Workload.Emscripten.Current.Manifest-8.0.100 From Version 8.0.22 -> To Version 8.0.22 (parent: Microsoft.NETCore.App.Runtime.win-x64) --- NuGet.config | 6 +++--- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 4 ++-- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/NuGet.config b/NuGet.config index e9ef436bf8e5..864d1d7740ef 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + @@ -22,7 +22,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 76c42f9112d2..6beb85dc4b88 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,11 +49,11 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://github.com/dotnet/emsdk - e559274b6cbfa4d246d108332b181c55ef1c9b3f + 9e37ff5ebf5f464d80bdae6ad9d24e7a01ee11f8 https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 3d0ec8085d08..2a01cc22ba9f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -51,12 +51,12 @@ 8.0.22 - 8.0.22-servicing.25516.7 + 8.0.22-servicing.25516.18 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25516.7 + 8.0.22-servicing.25516.18 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From 06d715c3ade5a3a7c1e4a90037ff1c921f918c20 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 04:57:35 +0000 Subject: [PATCH 193/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251016.18 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25513.14 -> To Version 8.0.22-servicing.25516.18 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 Dependency coherency updates On relative base path root Microsoft.NET.Workload.Emscripten.Current.Manifest-8.0.100 From Version 8.0.22 -> To Version 8.0.22 (parent: Microsoft.NETCore.App.Runtime.win-x64) --- NuGet.config | 6 +++--- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 4 ++-- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/NuGet.config b/NuGet.config index 74058cf82854..f2811365f03e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + @@ -22,7 +22,7 @@ - + @@ -63,7 +63,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 16bab4defea6..a706f45dfb71 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,11 +49,11 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://github.com/dotnet/emsdk - e559274b6cbfa4d246d108332b181c55ef1c9b3f + 9e37ff5ebf5f464d80bdae6ad9d24e7a01ee11f8 https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 27260a35c82c..3b0e75b0235b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.22 - 8.0.22-servicing.25516.7 + 8.0.22-servicing.25516.18 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25516.7 + 8.0.22-servicing.25516.18 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From b5f6215ed6dc276d749f690b9f956db29dc05bf3 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 04:57:40 +0000 Subject: [PATCH 194/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251016.18 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25513.14 -> To Version 8.0.22-servicing.25516.18 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 Dependency coherency updates On relative base path root Microsoft.NET.Workload.Emscripten.Current.Manifest-8.0.100 From Version 8.0.22 -> To Version 8.0.22 (parent: Microsoft.NETCore.App.Runtime.win-x64) --- NuGet.config | 6 +++--- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 4 ++-- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/NuGet.config b/NuGet.config index 335ad0f8d802..6dc8630e5b69 100644 --- a/NuGet.config +++ b/NuGet.config @@ -3,7 +3,7 @@ - + @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 185cd8aa516e..71c095e78f99 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,11 +49,11 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://github.com/dotnet/emsdk - e559274b6cbfa4d246d108332b181c55ef1c9b3f + 9e37ff5ebf5f464d80bdae6ad9d24e7a01ee11f8 https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f7ba9931b3a9e0089af5784efd975bf7fff01a6d + 60ede8fcf6a8c3015f3079d04e4997434a575709 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index bd9ff26baf7d..c79353501778 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.22 - 8.0.22-servicing.25516.7 + 8.0.22-servicing.25516.18 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25516.7 + 8.0.22-servicing.25516.18 8.0.0 8.0.1 8.0.3 From 2e295a223ee8be2cc8b64a5b0d2df3c336dcb4ec Mon Sep 17 00:00:00 2001 From: vseanreesermsft <78103370+vseanreesermsft@users.noreply.github.com> Date: Fri, 17 Oct 2025 09:30:55 -0700 Subject: [PATCH 195/392] Revert "[automated] Merge branch 'release/8.0.1xx' => 'release/8.0.3xx'" (#51310) --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 5db15c811a90..59e83dcf970f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,7 +11,7 @@ - 8.0.122 + 8.0.319 true release From 3b7d865b36553a5bad3e20095d2910c941d53c74 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 17:14:08 +0000 Subject: [PATCH 196/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251017.4 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25513.14 -> To Version 8.0.22-servicing.25517.4 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 6dc8630e5b69..8210b1292504 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 71c095e78f99..ef039568dcc7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index c79353501778..a48b0bd2cdf9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.22 - 8.0.22-servicing.25516.18 + 8.0.22-servicing.25517.4 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25516.18 + 8.0.22-servicing.25517.4 8.0.0 8.0.1 8.0.3 From 3c4fef45b0927415d14473e5c6465e418711abc7 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 17:14:10 +0000 Subject: [PATCH 197/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251017.4 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25513.14 -> To Version 8.0.22-servicing.25517.4 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 864d1d7740ef..e64f9eb6021f 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6beb85dc4b88..e3288b9439e1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 2a01cc22ba9f..7e0f9577808e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -51,12 +51,12 @@ 8.0.22 - 8.0.22-servicing.25516.18 + 8.0.22-servicing.25517.4 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25516.18 + 8.0.22-servicing.25517.4 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From f116e64e2f61df92d627d1dfc0215fedfa59b801 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 17:14:11 +0000 Subject: [PATCH 198/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20251017.4 On relative base path root Microsoft.NET.HostModel , Microsoft.NETCore.Platforms , VS.Redist.Common.NetCore.SharedFramework.x64.8.0 , VS.Redist.Common.NetCore.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25513.14 -> To Version 8.0.22-servicing.25517.4 Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Host.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index f2811365f03e..bc642a2fa316 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + @@ -63,7 +63,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a706f45dfb71..6f61afbd3fb1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 60ede8fcf6a8c3015f3079d04e4997434a575709 + f41eed7a945cb632ec834e5b1a36f4489232c978 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 3b0e75b0235b..53da6994b211 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.22 - 8.0.22-servicing.25516.18 + 8.0.22-servicing.25517.4 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25516.18 + 8.0.22-servicing.25517.4 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From 1a056c8015b3568b35d55fa313e8fa194fc3208e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 17 Oct 2025 19:15:49 +0000 Subject: [PATCH 199/392] Update dependencies from https://github.com/dotnet/msbuild build 20251017.4 On relative base path root Microsoft.SourceBuild.Intermediate.msbuild , Microsoft.Build.Localization From Version 17.8.43-servicing-25466-03 -> To Version 17.8.43-servicing-25517-04 Microsoft.Build From Version 17.8.43 -> To Version 17.8.43 --- NuGet.config | 3 +-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index e81db371d1a2..74cee579a3e6 100644 --- a/NuGet.config +++ b/NuGet.config @@ -16,7 +16,7 @@ - + @@ -56,7 +56,6 @@ - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ff47f03e4cbd..0c12144b4dcf 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -56,16 +56,16 @@ 42532a7524749ad5d48d1820eaa7d4ab7e77faa6 - https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted - f0cbb13971c30ad15a3f252a8d0171898a01ec11 + https://github.com/dotnet/msbuild + 6be7d7558719130df3de51b2ab8ce13e21e99a3b - - https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted - f0cbb13971c30ad15a3f252a8d0171898a01ec11 + + https://github.com/dotnet/msbuild + 6be7d7558719130df3de51b2ab8ce13e21e99a3b - - https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted - f0cbb13971c30ad15a3f252a8d0171898a01ec11 + + https://github.com/dotnet/msbuild + 6be7d7558719130df3de51b2ab8ce13e21e99a3b diff --git a/eng/Versions.props b/eng/Versions.props index 53a39112ceed..2454dcbef004 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -135,7 +135,7 @@ $([System.IO.File]::ReadAllText('$(RepoRoot)\src\Layout\redist\minimumMSBuildVersion').Trim()) --> $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) - 17.8.43-servicing-25466-03 + 17.8.43-servicing-25517-04 $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) $(MicrosoftBuildTasksCorePackageVersion) From 2dd7284609953eaf5bee6882d2f04f9de2ef1437 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 22:58:36 +0000 Subject: [PATCH 200/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251017.1 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25514.1 -> To Version 8.0.22-servicing.25517.1 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.22-servicing.25514.4 -> To Version 8.0.22-servicing.25517.2 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 8210b1292504..0686d4836995 100644 --- a/NuGet.config +++ b/NuGet.config @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ef039568dcc7..71fffaed1b7a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cc9b6fd17be23353e778292b0a280d772f6a44a0 + 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cc9b6fd17be23353e778292b0a280d772f6a44a0 + 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cc9b6fd17be23353e778292b0a280d772f6a44a0 + 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cc9b6fd17be23353e778292b0a280d772f6a44a0 + 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 0e5a1fb26eea00d3ecd8a024520af0deb6d9ece8 + dfc5664c294078401aa134df3edff5ce1a7d7322 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index a48b0bd2cdf9..4dbf7ee878c7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -186,7 +186,7 @@ - 8.0.22-servicing.25515.3 + 8.0.22-servicing.25517.2 From a82c1b1349b9f8c632b45cadd5d1233cbba00cf5 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 22:58:36 +0000 Subject: [PATCH 201/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251017.1 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25514.1 -> To Version 8.0.22-servicing.25517.1 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.22-servicing.25514.4 -> To Version 8.0.22-servicing.25517.2 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index e64f9eb6021f..ecc98bed219b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -69,7 +69,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e3288b9439e1..d7fbc178af87 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cc9b6fd17be23353e778292b0a280d772f6a44a0 + 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cc9b6fd17be23353e778292b0a280d772f6a44a0 + 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cc9b6fd17be23353e778292b0a280d772f6a44a0 + 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cc9b6fd17be23353e778292b0a280d772f6a44a0 + 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 0e5a1fb26eea00d3ecd8a024520af0deb6d9ece8 + dfc5664c294078401aa134df3edff5ce1a7d7322 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 7e0f9577808e..2a49d56476b9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -184,7 +184,7 @@ - 8.0.22-servicing.25515.3 + 8.0.22-servicing.25517.2 From 750b80323a5edba6f7e1c6d265dcf9dbc5a8838e Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 22:58:38 +0000 Subject: [PATCH 202/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop build 20251017.1 On relative base path root Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 From Version 8.0.22 -> To Version 8.0.22 VS.Redist.Common.WindowsDesktop.SharedFramework.x64.8.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.8.0 From Version 8.0.22-servicing.25514.1 -> To Version 8.0.22-servicing.25517.1 Dependency coherency updates On relative base path root Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.22-servicing.25514.4 -> To Version 8.0.22-servicing.25517.2 (parent: Microsoft.WindowsDesktop.App.Ref) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index bc642a2fa316..f7f8fee49a30 100644 --- a/NuGet.config +++ b/NuGet.config @@ -28,7 +28,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6f61afbd3fb1..6fda810de4e8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -230,23 +230,23 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cc9b6fd17be23353e778292b0a280d772f6a44a0 + 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cc9b6fd17be23353e778292b0a280d772f6a44a0 + 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cc9b6fd17be23353e778292b0a280d772f6a44a0 + 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - cc9b6fd17be23353e778292b0a280d772f6a44a0 + 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 0e5a1fb26eea00d3ecd8a024520af0deb6d9ece8 + dfc5664c294078401aa134df3edff5ce1a7d7322 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 53da6994b211..cadbaea7ecd7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -187,7 +187,7 @@ - 8.0.22-servicing.25515.3 + 8.0.22-servicing.25517.2 From a693a31117d3bb2d4f27088ca0387f12e46da1e8 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 23:08:36 +0000 Subject: [PATCH 203/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251017.13 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.12 -> To Version 8.0.22-servicing.25517.13 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0686d4836995..b2f52ae26a64 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 71fffaed1b7a..a6e504cc23f2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 4dbf7ee878c7..edc67ed77d20 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -171,11 +171,11 @@ 8.0.22 - 8.0.22-servicing.25515.18 - 8.0.22-servicing.25515.18 - 8.0.22-servicing.25515.18 - 8.0.22-servicing.25515.18 - 8.0.22-servicing.25515.18 + 8.0.22-servicing.25517.13 + 8.0.22-servicing.25517.13 + 8.0.22-servicing.25517.13 + 8.0.22-servicing.25517.13 + 8.0.22-servicing.25517.13 8.0.22 From d0212d25307ba7d97056b0994acc1c9aed88feb0 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 23:08:36 +0000 Subject: [PATCH 204/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251017.13 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.12 -> To Version 8.0.22-servicing.25517.13 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index ecc98bed219b..5005fb772c5a 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d7fbc178af87..14de3f9a479c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 2a49d56476b9..1818f389ccfa 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -169,11 +169,11 @@ 8.0.22 - 8.0.22-servicing.25515.18 - 8.0.22-servicing.25515.18 - 8.0.22-servicing.25515.18 - 8.0.22-servicing.25515.18 - 8.0.22-servicing.25515.18 + 8.0.22-servicing.25517.13 + 8.0.22-servicing.25517.13 + 8.0.22-servicing.25517.13 + 8.0.22-servicing.25517.13 + 8.0.22-servicing.25517.13 8.0.22 From c94cfbb8ce36219cd0824dcb9c9ec02557682452 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 23:08:36 +0000 Subject: [PATCH 205/392] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore build 20251017.13 On relative base path root dotnet-dev-certs , dotnet-user-jwts , dotnet-user-secrets , Microsoft.AspNetCore.Analyzers , Microsoft.AspNetCore.App.Ref.Internal , Microsoft.AspNetCore.Components.SdkAnalyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers , VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 From Version 8.0.22-servicing.25514.12 -> To Version 8.0.22-servicing.25517.13 Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Runtime.win-x64 , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.TestHost , Microsoft.Extensions.FileProviders.Embedded , Microsoft.Extensions.ObjectPool , Microsoft.JSInterop From Version 8.0.22 -> To Version 8.0.22 --- NuGet.config | 4 +-- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++---- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index f7f8fee49a30..0aeb38a9e18a 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6fda810de4e8..87da616801d2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn bc1c3011064a493b0ca527df6fb7215e2e5cfa96 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://github.com/nuget/nuget.client @@ -250,48 +250,48 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 4a279753026b4a3c25a54880739b46e11d8f3064 + 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index cadbaea7ecd7..e9325a3f2f1f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -172,11 +172,11 @@ 8.0.22 - 8.0.22-servicing.25515.18 - 8.0.22-servicing.25515.18 - 8.0.22-servicing.25515.18 - 8.0.22-servicing.25515.18 - 8.0.22-servicing.25515.18 + 8.0.22-servicing.25517.13 + 8.0.22-servicing.25517.13 + 8.0.22-servicing.25517.13 + 8.0.22-servicing.25517.13 + 8.0.22-servicing.25517.13 8.0.22 From 2a0de841e2b1d99c66edc12c0038f0a8844c8de9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 18 Oct 2025 02:02:51 +0000 Subject: [PATCH 206/392] Update dependencies from https://github.com/dotnet/msbuild build 20251017.1 On relative base path root Microsoft.SourceBuild.Intermediate.msbuild , Microsoft.Build.Localization From Version 17.10.46-servicing-25466-04 -> To Version 17.10.46-servicing-25517-01 Microsoft.Build From Version 17.10.46 -> To Version 17.10.46 --- NuGet.config | 3 +-- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 2 +- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/NuGet.config b/NuGet.config index 55244affe97c..c96aafeb1132 100644 --- a/NuGet.config +++ b/NuGet.config @@ -17,7 +17,7 @@ - + @@ -58,7 +58,6 @@ - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 72128645f3b8..9d14c4c475aa 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -56,16 +56,16 @@ 42532a7524749ad5d48d1820eaa7d4ab7e77faa6 - https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted - aa888d3214e5adb503c48c3bad2bfc6c5aff638a + https://github.com/dotnet/msbuild + 49570e4485d50317e5719958985f7ad40de4774e - - https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted - aa888d3214e5adb503c48c3bad2bfc6c5aff638a + + https://github.com/dotnet/msbuild + 49570e4485d50317e5719958985f7ad40de4774e - - https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted - aa888d3214e5adb503c48c3bad2bfc6c5aff638a + + https://github.com/dotnet/msbuild + 49570e4485d50317e5719958985f7ad40de4774e diff --git a/eng/Versions.props b/eng/Versions.props index 59e83dcf970f..fdafc7fa00dd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -132,7 +132,7 @@ 17.8.29 --> $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) - 17.10.46-servicing-25466-04 + 17.10.46-servicing-25517-01 $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) $(MicrosoftBuildTasksCorePackageVersion) From 36989f3d57eab74187d6d73187cae7e655b56e71 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 18 Oct 2025 02:02:54 +0000 Subject: [PATCH 207/392] Update dependencies from https://github.com/dotnet/razor build 20251017.3 On relative base path root Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport From Version 7.0.0-preview.25480.2 -> To Version 7.0.0-preview.25517.3 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 72128645f3b8..0fbd0441765c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -293,18 +293,18 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://github.com/dotnet/razor - 51ecca98bb8c800e4f4a17eacf94c2eb41c79a5a + e4d60febefa08cd99a7eccca17cce2310fa32ded - + https://github.com/dotnet/razor - 51ecca98bb8c800e4f4a17eacf94c2eb41c79a5a + e4d60febefa08cd99a7eccca17cce2310fa32ded - + https://github.com/dotnet/razor - 51ecca98bb8c800e4f4a17eacf94c2eb41c79a5a + e4d60febefa08cd99a7eccca17cce2310fa32ded https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 59e83dcf970f..6e63037cc168 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -178,9 +178,9 @@ - 7.0.0-preview.25480.2 - 7.0.0-preview.25480.2 - 7.0.0-preview.25480.2 + 7.0.0-preview.25517.3 + 7.0.0-preview.25517.3 + 7.0.0-preview.25517.3 From 44e69b644ad6dc7af5e8f5bfc28dc564bf4c3cb5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 21 Oct 2025 02:02:37 +0000 Subject: [PATCH 208/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20251020.5 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25515.4 -> To Version 8.0.0-alpha.1.25520.5 --- NuGet.config | 8 -------- eng/Version.Details.xml | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/NuGet.config b/NuGet.config index 74cee579a3e6..30cd5aa23a04 100644 --- a/NuGet.config +++ b/NuGet.config @@ -3,7 +3,6 @@ - @@ -13,21 +12,17 @@ - - - - @@ -52,7 +47,6 @@ - @@ -60,10 +54,8 @@ - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0c12144b4dcf..bc9415598d3d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,7 +354,7 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages 4f39ba9e117ece1679a2bd4f2e8c188f914078e1 From 853a6d3d86e65691ffbeeb57fb1266861980b2d0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 21 Oct 2025 02:02:53 +0000 Subject: [PATCH 209/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20251020.5 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25515.4 -> To Version 8.0.0-alpha.1.25520.5 --- NuGet.config | 8 -------- eng/Version.Details.xml | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/NuGet.config b/NuGet.config index c96aafeb1132..a7bf14f0341d 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,6 @@ - @@ -14,21 +13,17 @@ - - - - @@ -55,7 +50,6 @@ - @@ -65,10 +59,8 @@ - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b86ac285da2a..812e78694b39 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,7 +354,7 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages 4f39ba9e117ece1679a2bd4f2e8c188f914078e1 From 2b5c3328c5db3b12d20408e770bdf294b008791e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 21 Oct 2025 02:03:08 +0000 Subject: [PATCH 210/392] Update dependencies from https://github.com/dotnet/msbuild build 20251020.9 On relative base path root Microsoft.SourceBuild.Intermediate.msbuild , Microsoft.Build.Localization From Version 17.10.46-servicing-25517-01 -> To Version 17.10.48-servicing-25520-09 Microsoft.Build From Version 17.10.46 -> To Version 17.10.48 --- NuGet.config | 9 +-------- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 9 insertions(+), 16 deletions(-) diff --git a/NuGet.config b/NuGet.config index c96aafeb1132..6a412efcd730 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,6 @@ - @@ -14,21 +13,18 @@ - - + - - @@ -55,7 +51,6 @@ - @@ -65,10 +60,8 @@ - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b86ac285da2a..0d0bc9b60adb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -55,17 +55,17 @@ https://github.com/dotnet/emsdk 42532a7524749ad5d48d1820eaa7d4ab7e77faa6 - + https://github.com/dotnet/msbuild - 49570e4485d50317e5719958985f7ad40de4774e + 7ed9cf3b60e549ceeafbac09cfe2e6ed51124897 - + https://github.com/dotnet/msbuild - 49570e4485d50317e5719958985f7ad40de4774e + 7ed9cf3b60e549ceeafbac09cfe2e6ed51124897 - + https://github.com/dotnet/msbuild - 49570e4485d50317e5719958985f7ad40de4774e + 7ed9cf3b60e549ceeafbac09cfe2e6ed51124897 diff --git a/eng/Versions.props b/eng/Versions.props index 89fd4d96f490..971df595ebdd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -125,14 +125,14 @@ - 17.10.46 + 17.10.48 $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) - 17.10.46-servicing-25517-01 + 17.10.48-servicing-25520-09 $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) $(MicrosoftBuildTasksCorePackageVersion) From c61ffa9b0f08d18f4d409488620fd84595d1dd30 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 21 Oct 2025 03:27:23 +0000 Subject: [PATCH 211/392] Update dependencies from https://github.com/dotnet/templating build 20251020.1 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.122-servicing.25515.8 -> To Version 8.0.122-servicing.25520.1 Microsoft.TemplateEngine.Abstractions From Version 8.0.122 -> To Version 8.0.122 --- NuGet.config | 10 +--------- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 15 deletions(-) diff --git a/NuGet.config b/NuGet.config index 74cee579a3e6..483025130ecf 100644 --- a/NuGet.config +++ b/NuGet.config @@ -3,7 +3,6 @@ - @@ -13,21 +12,17 @@ - - - - + - @@ -52,7 +47,6 @@ - @@ -60,10 +54,8 @@ - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0c12144b4dcf..7f040280b0a5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 56b6fd07951fa6733694ed06accb8da0722f4c19 + cea273163ea07402a1702ace8e5ab1fac3ec805a - + https://github.com/dotnet/templating - 56b6fd07951fa6733694ed06accb8da0722f4c19 + cea273163ea07402a1702ace8e5ab1fac3ec805a - + https://github.com/dotnet/templating - 56b6fd07951fa6733694ed06accb8da0722f4c19 + cea273163ea07402a1702ace8e5ab1fac3ec805a diff --git a/eng/Versions.props b/eng/Versions.props index 2454dcbef004..cf3cc2003734 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -148,7 +148,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.122-servicing.25515.8 + 8.0.122-servicing.25520.1 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 2fd86e6d4c6f2c2de0f9240cb779209afacbef9b Mon Sep 17 00:00:00 2001 From: "Sean Reeser (CSI Interfusion Inc)" Date: Tue, 21 Oct 2025 18:33:37 +0000 Subject: [PATCH 212/392] internal/release/8.0.1xx - Updated Version.Details.xml - use released sha for msbuild --- eng/Version.Details.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ddd5f8082d98..10dcd381840d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -57,15 +57,15 @@ https://github.com/dotnet/msbuild - 6be7d7558719130df3de51b2ab8ce13e21e99a3b + f0cbb13971c30ad15a3f252a8d0171898a01ec11 https://github.com/dotnet/msbuild - 6be7d7558719130df3de51b2ab8ce13e21e99a3b + f0cbb13971c30ad15a3f252a8d0171898a01ec11 https://github.com/dotnet/msbuild - 6be7d7558719130df3de51b2ab8ce13e21e99a3b + f0cbb13971c30ad15a3f252a8d0171898a01ec11 From de739b8fa6611096d7cfe43a1651e00f9ed3e80c Mon Sep 17 00:00:00 2001 From: "Sean Reeser (CSI Interfusion Inc)" Date: Tue, 21 Oct 2025 18:37:28 +0000 Subject: [PATCH 213/392] internal/release/8.0.3xx - Updated Version.Details.xml - use released sha for msbuild --- eng/Version.Details.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 63f3e485ea63..f203751e6a9f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -57,15 +57,15 @@ https://github.com/dotnet/msbuild - 49570e4485d50317e5719958985f7ad40de4774e + aa888d3214e5adb503c48c3bad2bfc6c5aff638a https://github.com/dotnet/msbuild - 49570e4485d50317e5719958985f7ad40de4774e + aa888d3214e5adb503c48c3bad2bfc6c5aff638a https://github.com/dotnet/msbuild - 49570e4485d50317e5719958985f7ad40de4774e + aa888d3214e5adb503c48c3bad2bfc6c5aff638a From ac98c923fb6c0f02323455058539ae7fb3f4ea2b Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 21 Oct 2025 11:54:05 -0700 Subject: [PATCH 214/392] revert dependencies from msbuild --- NuGet.config | 1 - eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index 72cb24adede4..47d1ba9a7225 100644 --- a/NuGet.config +++ b/NuGet.config @@ -17,7 +17,6 @@ - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f203751e6a9f..76b75664fa5b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -56,15 +56,15 @@ 9e37ff5ebf5f464d80bdae6ad9d24e7a01ee11f8 - https://github.com/dotnet/msbuild + https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted aa888d3214e5adb503c48c3bad2bfc6c5aff638a - - https://github.com/dotnet/msbuild + + https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted aa888d3214e5adb503c48c3bad2bfc6c5aff638a - - https://github.com/dotnet/msbuild + + https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted aa888d3214e5adb503c48c3bad2bfc6c5aff638a diff --git a/eng/Versions.props b/eng/Versions.props index e797e5a4cb33..56eee94559fc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -132,7 +132,7 @@ 17.8.29 --> $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) - 17.10.46-servicing-25517-01 + 17.10.46-servicing-25466-04 $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) $(MicrosoftBuildTasksCorePackageVersion) From af9b91fc1012b63ce0a0183a6dc89c6d23777b95 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 21 Oct 2025 11:54:28 -0700 Subject: [PATCH 215/392] revert dependencies from msbuild --- NuGet.config | 1 - eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index 36d27bccde02..01a67ad056bf 100644 --- a/NuGet.config +++ b/NuGet.config @@ -16,7 +16,6 @@ - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 10dcd381840d..5acf272be918 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -56,15 +56,15 @@ 9e37ff5ebf5f464d80bdae6ad9d24e7a01ee11f8 - https://github.com/dotnet/msbuild + https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted f0cbb13971c30ad15a3f252a8d0171898a01ec11 - - https://github.com/dotnet/msbuild + + https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted f0cbb13971c30ad15a3f252a8d0171898a01ec11 - - https://github.com/dotnet/msbuild + + https://dev.azure.com/devdiv/DevDiv/_git/DotNet-msbuild-Trusted f0cbb13971c30ad15a3f252a8d0171898a01ec11 diff --git a/eng/Versions.props b/eng/Versions.props index 0f9aae3fd043..9c2f23d9a042 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -135,7 +135,7 @@ $([System.IO.File]::ReadAllText('$(RepoRoot)\src\Layout\redist\minimumMSBuildVersion').Trim()) --> $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) - 17.8.43-servicing-25517-04 + 17.8.43-servicing-25466-03 $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) $(MicrosoftBuildTasksCorePackageVersion) From 89ca9dc8585afe67f96a1eb03be318fc77c86c6a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Oct 2025 02:02:44 +0000 Subject: [PATCH 216/392] Update dependencies from https://github.com/dotnet/templating build 20251020.3 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.319-servicing.25515.13 -> To Version 8.0.319-servicing.25520.3 Microsoft.TemplateEngine.Abstractions From Version 8.0.319 -> To Version 8.0.319 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index a7bf14f0341d..460bc64e883a 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 812e78694b39..3fb8ca10ce85 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 1ad703e0ba0eb372257646309b35cb6efb0d97e9 + e4b2ba8a8de579e45950e2c49a77fba00147e5e4 - + https://github.com/dotnet/templating - 1ad703e0ba0eb372257646309b35cb6efb0d97e9 + e4b2ba8a8de579e45950e2c49a77fba00147e5e4 - + https://github.com/dotnet/templating - 1ad703e0ba0eb372257646309b35cb6efb0d97e9 + e4b2ba8a8de579e45950e2c49a77fba00147e5e4 diff --git a/eng/Versions.props b/eng/Versions.props index 89fd4d96f490..283630362619 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -146,7 +146,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.319-servicing.25515.13 + 8.0.319-servicing.25520.3 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 0d2482d4faed7b5ae02698d87085f1e83f6bc1e8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 23 Oct 2025 02:03:20 +0000 Subject: [PATCH 217/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20251022.3 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25520.5 -> To Version 8.0.0-alpha.1.25522.3 --- eng/Version.Details.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e2348201c525..abc47c4bf2b7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - 4f39ba9e117ece1679a2bd4f2e8c188f914078e1 + 449148366d9105de8a6470ebc4ba198926e9a30a From 84153df28e2b4c815eb70c7ceb17c8268797c67a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 23 Oct 2025 02:03:42 +0000 Subject: [PATCH 218/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20251022.3 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25520.5 -> To Version 8.0.0-alpha.1.25522.3 --- eng/Version.Details.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 812e78694b39..0c76b0b33c56 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - 4f39ba9e117ece1679a2bd4f2e8c188f914078e1 + 449148366d9105de8a6470ebc4ba198926e9a30a From b34e67d65403e2333f368f0877496b54943a2504 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 27 Oct 2025 02:02:54 +0000 Subject: [PATCH 219/392] Update dependencies from https://github.com/dotnet/razor build 20251026.1 On relative base path root Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport From Version 7.0.0-preview.25517.3 -> To Version 7.0.0-preview.25526.1 --- eng/Version.Details.xml | 6 +++--- eng/Versions.props | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 812e78694b39..92ceece466e9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -293,16 +293,16 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://github.com/dotnet/razor e4d60febefa08cd99a7eccca17cce2310fa32ded - + https://github.com/dotnet/razor e4d60febefa08cd99a7eccca17cce2310fa32ded - + https://github.com/dotnet/razor e4d60febefa08cd99a7eccca17cce2310fa32ded diff --git a/eng/Versions.props b/eng/Versions.props index 89fd4d96f490..26483bd3f8d7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -178,9 +178,9 @@ - 7.0.0-preview.25517.3 - 7.0.0-preview.25517.3 - 7.0.0-preview.25517.3 + 7.0.0-preview.25526.1 + 7.0.0-preview.25526.1 + 7.0.0-preview.25526.1 From e5b3bac596bd7e4eaf6e6c77d4caa085a6fa1e72 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Tue, 28 Oct 2025 07:49:34 +0000 Subject: [PATCH 220/392] Merged PR 54669: [internal/release/8.0.1xx] Update dependencies from dnceng/internal/dotnet-runtime This pull request updates the following dependencies [marker]: <> (Begin:dd95552e-72fb-4363-9b59-08dbd5a5c3e7) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - **Subscription**: [dd95552e-72fb-4363-9b59-08dbd5a5c3e7](https://maestro.dot.net/subscriptions?search=dd95552e-72fb-4363-9b59-08dbd5a5c3e7) - **Build**: [20251027.7](https://dev.azure.com/dnceng/internal/_build/results?buildId=2825786) ([288799](https://maestro.dot.net/channel/3880/azdo:dnceng:internal:dotnet-runtime/build/288799)) - **Date Produced**: October 28, 2025 7:03:51 AM UTC - **Commit**: [a2266c728f63a494ccb6786d794da2df135030be](https://dev.azure.com/dnceng/internal/_git/dotnet-runtime?_a=history&version=GCa2266c728f63a494ccb6786d794da2df135030be) - **Branch**: [refs/heads/internal/release/8.0](https://dev.azure.com/dnceng/internal/_git/dotnet-runtime?version=GBrefs/heads/internal/release/8.0) [DependencyUpdate]: <> (Begin) - **Updates**: - From [8.0.22-servicing.25517.4 to 8.0.22-servicing.25527.7][1] - Microsoft.NET.HostModel - Microsoft.NETCore.Platforms - VS.Redist.Common.NetCore.SharedFramework.x64.8.0 - VS.Redist.Common.NetCore.TargetingPack.x64.8.0 - From [8.0.22 to 8.0.22][1] - Microsoft.NET.ILLink.Tasks - Microsoft.NETCore.App.Host.win-x64 - Microsoft.NETCore.App.Ref - Microsoft.NETCore.App.Runtime.win-x64 - Microsoft.NETCore.DotNetHostResolver [1]: https://dev.azure.com/dnceng/internal/_git/dotnet-runtime/branches?baseVersion=GCf41eed7a945cb632ec834e5b1a36f4489232c978&targetVersion=GCa2266c728f63a494ccb6786d794da2df135030be&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:dd95552e-72fb-4363-9b59-08dbd5a5c3e7) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 01a67ad056bf..751679dcdaab 100644 --- a/NuGet.config +++ b/NuGet.config @@ -20,7 +20,7 @@ - + @@ -59,7 +59,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5acf272be918..0bf288331aec 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 9c2f23d9a042..f2916d640088 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,12 +50,12 @@ 8.0.22 - 8.0.22-servicing.25517.4 + 8.0.22-servicing.25527.7 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25517.4 + 8.0.22-servicing.25527.7 8.0.0 8.0.1 8.0.3 From 8f59bbb15cb4030bc7fc4cbbb8e39c6cb7735649 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Tue, 28 Oct 2025 08:37:19 +0000 Subject: [PATCH 221/392] Merged PR 54668: [internal/release/8.0.3xx] Update dependencies from dnceng/internal/dotnet-runtime This pull request updates the following dependencies [marker]: <> (Begin:471db9b4-49ec-4921-de46-08dc11e85c3a) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - **Subscription**: [471db9b4-49ec-4921-de46-08dc11e85c3a](https://maestro.dot.net/subscriptions?search=471db9b4-49ec-4921-de46-08dc11e85c3a) - **Build**: [20251027.7](https://dev.azure.com/dnceng/internal/_build/results?buildId=2825786) ([288799](https://maestro.dot.net/channel/3880/azdo:dnceng:internal:dotnet-runtime/build/288799)) - **Date Produced**: October 28, 2025 7:03:51 AM UTC - **Commit**: [a2266c728f63a494ccb6786d794da2df135030be](https://dev.azure.com/dnceng/internal/_git/dotnet-runtime?_a=history&version=GCa2266c728f63a494ccb6786d794da2df135030be) - **Branch**: [refs/heads/internal/release/8.0](https://dev.azure.com/dnceng/internal/_git/dotnet-runtime?version=GBrefs/heads/internal/release/8.0) [DependencyUpdate]: <> (Begin) - **Updates**: - From [8.0.22-servicing.25517.4 to 8.0.22-servicing.25527.7][1] - Microsoft.NET.HostModel - Microsoft.NETCore.Platforms - VS.Redist.Common.NetCore.SharedFramework.x64.8.0 - VS.Redist.Common.NetCore.TargetingPack.x64.8.0 - From [8.0.22 to 8.0.22][1] - Microsoft.NET.ILLink.Tasks - Microsoft.NETCore.App.Host.win-x64 - Microsoft.NETCore.App.Ref - Microsoft.NETCore.App.Runtime.win-x64 - Microsoft.NETCore.DotNetHostResolver [1]: https://dev.azure.com/dnceng/internal/_git/dotnet-runtime/branches?baseVersion=GCf41eed7a945cb632ec834e5b1a36f4489232c978&targetVersion=GCa2266c728f63a494ccb6786d794da2df135030be&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:471db9b4-49ec-4921-de46-08dc11e85c3a) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 47d1ba9a7225..48826e92f152 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 76b75664fa5b..9408b1808ca6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 56eee94559fc..16eb3bc15dad 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -51,12 +51,12 @@ 8.0.22 - 8.0.22-servicing.25517.4 + 8.0.22-servicing.25527.7 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25517.4 + 8.0.22-servicing.25527.7 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From 8da85111fbdb9200a21288140950d7951d594936 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Tue, 28 Oct 2025 08:37:28 +0000 Subject: [PATCH 222/392] Merged PR 54667: [internal/release/8.0.4xx] Update dependencies from dnceng/internal/dotnet-runtime This pull request updates the following dependencies [marker]: <> (Begin:82bc8158-ef88-4a27-3f7b-08dca299e604) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - **Subscription**: [82bc8158-ef88-4a27-3f7b-08dca299e604](https://maestro.dot.net/subscriptions?search=82bc8158-ef88-4a27-3f7b-08dca299e604) - **Build**: [20251027.7](https://dev.azure.com/dnceng/internal/_build/results?buildId=2825786) ([288799](https://maestro.dot.net/channel/3880/azdo:dnceng:internal:dotnet-runtime/build/288799)) - **Date Produced**: October 28, 2025 7:03:51 AM UTC - **Commit**: [a2266c728f63a494ccb6786d794da2df135030be](https://dev.azure.com/dnceng/internal/_git/dotnet-runtime?_a=history&version=GCa2266c728f63a494ccb6786d794da2df135030be) - **Branch**: [refs/heads/internal/release/8.0](https://dev.azure.com/dnceng/internal/_git/dotnet-runtime?version=GBrefs/heads/internal/release/8.0) [DependencyUpdate]: <> (Begin) - **Updates**: - From [8.0.22-servicing.25517.4 to 8.0.22-servicing.25527.7][1] - Microsoft.NET.HostModel - Microsoft.NETCore.Platforms - VS.Redist.Common.NetCore.SharedFramework.x64.8.0 - VS.Redist.Common.NetCore.TargetingPack.x64.8.0 - From [8.0.22 to 8.0.22][1] - Microsoft.NET.ILLink.Tasks - Microsoft.NETCore.App.Host.win-x64 - Microsoft.NETCore.App.Ref - Microsoft.NETCore.App.Runtime.win-x64 - Microsoft.NETCore.DotNetHostResolver [1]: https://dev.azure.com/dnceng/internal/_git/dotnet-runtime/branches?baseVersion=GCf41eed7a945cb632ec834e5b1a36f4489232c978&targetVersion=GCa2266c728f63a494ccb6786d794da2df135030be&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:82bc8158-ef88-4a27-3f7b-08dca299e604) --- NuGet.config | 6 ++---- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 4 ++-- 3 files changed, 17 insertions(+), 19 deletions(-) diff --git a/NuGet.config b/NuGet.config index fed80ac47c77..56eb3ea265eb 100644 --- a/NuGet.config +++ b/NuGet.config @@ -17,12 +17,11 @@ - - + @@ -58,12 +57,11 @@ - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3ecde365008c..f49fc06a186c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -16,32 +16,32 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -49,7 +49,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://github.com/dotnet/emsdk @@ -202,7 +202,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f41eed7a945cb632ec834e5b1a36f4489232c978 + a2266c728f63a494ccb6786d794da2df135030be https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 74b27cc1383d..771c94f62db5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,12 +52,12 @@ 8.0.22 - 8.0.22-servicing.25517.4 + 8.0.22-servicing.25527.7 8.0.22 $(MicrosoftNETCoreAppRuntimewinx64PackageVersion) 8.0.2 8.0.22 - 8.0.22-servicing.25517.4 + 8.0.22-servicing.25527.7 8.0.0 $(MicrosoftExtensionsDependencyModelPackageVersion) 8.0.1 From 38176ba6bb856417f60e569ad9045dc871effd27 Mon Sep 17 00:00:00 2001 From: Djuradj Kurepa Date: Tue, 28 Oct 2025 11:00:51 +0000 Subject: [PATCH 223/392] Merged PR 54678: Disable Nuget Audit Disable NuGet audit ---- #### AI description (iteration 1) #### PR Classification Configuration change to disable the NuGet audit feature. #### PR Summary This pull request updates the build configuration to temporarily disable NuGet audit due to current audit alerts. - In `Directory.Build.props`, a new property group has been added that sets `false`, along with a TODO comment linking to https://github.com/dotnet/sdk/issues/51466. --- Directory.Build.props | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Directory.Build.props b/Directory.Build.props index ae3882f1df94..871bcd30e998 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -51,6 +51,11 @@ enable + + + false + + From 7f0a2e39c81d9942dda423d6066f9c064131ac23 Mon Sep 17 00:00:00 2001 From: Djuradj Kurepa Date: Tue, 28 Oct 2025 11:00:55 +0000 Subject: [PATCH 224/392] Merged PR 54677: Disable NuGet audit Disable NuGet audit ---- #### AI description (iteration 1) #### PR Classification This pull request is a configuration change that disables the NuGet audit feature. #### PR Summary The pull request disables NuGet audit by adding a new property group in the build configuration. - `Directory.Build.props`: Introduced a `` setting `` to `false` along with a comment noting a TODO to re-enable the audit in the future. --- Directory.Build.props | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Directory.Build.props b/Directory.Build.props index ae3882f1df94..784b37b39804 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -47,6 +47,11 @@ + + + false + + enable From b96dd68949c90cf8ae1e5e089e44a4b687ae2587 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Tue, 28 Oct 2025 13:43:23 +0000 Subject: [PATCH 225/392] Merged PR 54680: [internal/release/8.0.3xx] Update dependencies from dnceng/internal/dotnet-aspnetcore, dnceng/internal/dotnet-windowsdesktop This pull request updates the following dependencies [marker]: <> (Begin:911684f3-0faa-4fc9-de45-08dc11e85c3a) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - **Subscription**: [911684f3-0faa-4fc9-de45-08dc11e85c3a](https://maestro.dot.net/subscriptions?search=911684f3-0faa-4fc9-de45-08dc11e85c3a) - **Build**: [20251028.8](https://dev.azure.com/dnceng/internal/_build/results?buildId=2826220) ([288820](https://maestro.dot.net/channel/3880/azdo:dnceng:internal:dotnet-aspnetcore/build/288820)) - **Date Produced**: October 28, 2025 1:25:22 PM UTC - **Commit**: [ee417479933278bb5aadc5944706a96b5ef74a5d](https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore?_a=history&version=GCee417479933278bb5aadc5944706a96b5ef74a5d) - **Branch**: [refs/heads/internal/release/8.0](https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore?version=GBrefs/heads/internal/release/8.0) [DependencyUpdate]: <> (Begin) - **Updates**: - From [8.0.22-servicing.25517.13 to 8.0.22-servicing.25528.8][3] - dotnet-dev-certs - dotnet-user-jwts - dotnet-user-secrets - Microsoft.AspNetCore.Analyzers - Microsoft.AspNetCore.App.Ref.Internal - Microsoft.AspNetCore.Components.SdkAnalyzers - Microsoft.AspNetCore.DeveloperCertificates.XPlat - Microsoft.AspNetCore.Mvc.Analyzers - Microsoft.AspNetCore.Mvc.Api.Analyzers - VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 - From [8.0.22 to 8.0.22][3] - Microsoft.AspNetCore.App.Ref - Microsoft.AspNetCore.App.Runtime.win-x64 - Microsoft.AspNetCore.Authorization - Microsoft.AspNetCore.Components.Web - Microsoft.AspNetCore.TestHost - Microsoft.Extensions.FileProviders.Embedded - Microsoft.Extensions.ObjectPool - Microsoft.JSInterop [3]: https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore/branches?baseVersion=GC8c4d2304d886fd33d4d1315b9fd438afbc46a4c0&targetVersion=GCee417479933278bb5aadc5944706a96b5ef74a5d&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:911684f3-0faa-4fc9-de45-08dc11e85c3a) [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.NET.Sdk.WindowsDesktop**: from 8.0.22-servicing.25517.2 to 8.0.22-servicing.25528.2 (parent: Microsoft.WindowsDesktop.App.Ref) [DependencyUpdate]: <> (End) [marker]: <> (End:Coherency Updates) [marker]: <> (Begin:1adb2556-0120-43d1-c468-08dc11e32ec2) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - **Subscription**: [1adb2556-0120-43d1-c468-08dc11e32ec2](https://maestro.dot.net/subscriptions?search=1adb2556-0120-43d1-c468-08dc11e... --- NuGet.config | 8 ++--- eng/Version.Details.xml | 72 ++++++++++++++++++++--------------------- eng/Versions.props | 12 +++---- 3 files changed, 46 insertions(+), 46 deletions(-) diff --git a/NuGet.config b/NuGet.config index 48826e92f152..4676d2518eac 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -27,7 +27,7 @@ - + @@ -54,7 +54,7 @@ - + @@ -67,7 +67,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9408b1808ca6..bfa7c1cf226e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn 85262f5f51be12867c1c2776d7a2be55251c04be - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://github.com/nuget/nuget.client @@ -230,68 +230,68 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d + 4519b9f0e25cae3c6d06cbd80cae9d6bd5fb90f7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d + 4519b9f0e25cae3c6d06cbd80cae9d6bd5fb90f7 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d + 4519b9f0e25cae3c6d06cbd80cae9d6bd5fb90f7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d + 4519b9f0e25cae3c6d06cbd80cae9d6bd5fb90f7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - dfc5664c294078401aa134df3edff5ce1a7d7322 + 925e025a1ad14f0b6f094e5b2d5cc9f62ada294c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 16eb3bc15dad..3bfbc161ebee 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -169,11 +169,11 @@ 8.0.22 - 8.0.22-servicing.25517.13 - 8.0.22-servicing.25517.13 - 8.0.22-servicing.25517.13 - 8.0.22-servicing.25517.13 - 8.0.22-servicing.25517.13 + 8.0.22-servicing.25528.8 + 8.0.22-servicing.25528.8 + 8.0.22-servicing.25528.8 + 8.0.22-servicing.25528.8 + 8.0.22-servicing.25528.8 8.0.22 @@ -184,7 +184,7 @@ - 8.0.22-servicing.25517.2 + 8.0.22-servicing.25528.2 From bd8ff52a950627d432878cee33a0c3696836df75 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Tue, 28 Oct 2025 13:43:39 +0000 Subject: [PATCH 226/392] Merged PR 54681: [internal/release/8.0.4xx] Update dependencies from dnceng/internal/dotnet-aspnetcore, dnceng/internal/dotnet-windowsdesktop This pull request updates the following dependencies [marker]: <> (Begin:1ab2aba6-b648-40a9-9fe8-08dca2920c50) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - **Subscription**: [1ab2aba6-b648-40a9-9fe8-08dca2920c50](https://maestro.dot.net/subscriptions?search=1ab2aba6-b648-40a9-9fe8-08dca2920c50) - **Build**: [20251028.8](https://dev.azure.com/dnceng/internal/_build/results?buildId=2826220) ([288820](https://maestro.dot.net/channel/3880/azdo:dnceng:internal:dotnet-aspnetcore/build/288820)) - **Date Produced**: October 28, 2025 1:25:22 PM UTC - **Commit**: [ee417479933278bb5aadc5944706a96b5ef74a5d](https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore?_a=history&version=GCee417479933278bb5aadc5944706a96b5ef74a5d) - **Branch**: [refs/heads/internal/release/8.0](https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore?version=GBrefs/heads/internal/release/8.0) [DependencyUpdate]: <> (Begin) - **Updates**: - From [8.0.22-servicing.25517.13 to 8.0.22-servicing.25528.8][3] - dotnet-dev-certs - dotnet-user-jwts - dotnet-user-secrets - Microsoft.AspNetCore.Analyzers - Microsoft.AspNetCore.App.Ref.Internal - Microsoft.AspNetCore.Components.SdkAnalyzers - Microsoft.AspNetCore.DeveloperCertificates.XPlat - Microsoft.AspNetCore.Mvc.Analyzers - Microsoft.AspNetCore.Mvc.Api.Analyzers - VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 - From [8.0.22 to 8.0.22][3] - Microsoft.AspNetCore.App.Ref - Microsoft.AspNetCore.App.Runtime.win-x64 - Microsoft.AspNetCore.Authorization - Microsoft.AspNetCore.Components.Web - Microsoft.AspNetCore.TestHost - Microsoft.Extensions.FileProviders.Embedded - Microsoft.Extensions.ObjectPool - Microsoft.JSInterop [3]: https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore/branches?baseVersion=GC8c4d2304d886fd33d4d1315b9fd438afbc46a4c0&targetVersion=GCee417479933278bb5aadc5944706a96b5ef74a5d&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:1ab2aba6-b648-40a9-9fe8-08dca2920c50) [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.NET.Sdk.WindowsDesktop**: from 8.0.22-servicing.25517.2 to 8.0.22-servicing.25528.2 (parent: Microsoft.WindowsDesktop.App.Ref) [DependencyUpdate]: <> (End) [marker]: <> (End:Coherency Updates) [marker]: <> (Begin:11ffd28b-eb51-469a-d3fb-08dca292067e) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - **Subscription**: [11ffd28b-eb51-469a-d3fb-08dca292067e](https://maestro.dot.net/subscriptions?search=11ffd28b-eb51-469a-d3fb-08dca29... --- NuGet.config | 8 ++--- eng/Version.Details.xml | 72 ++++++++++++++++++++--------------------- eng/Versions.props | 12 +++---- 3 files changed, 46 insertions(+), 46 deletions(-) diff --git a/NuGet.config b/NuGet.config index 56eb3ea265eb..7e8297337878 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,7 +14,7 @@ - + @@ -27,7 +27,7 @@ - + @@ -54,7 +54,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f49fc06a186c..b530de494272 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn bc1c3011064a493b0ca527df6fb7215e2e5cfa96 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://github.com/nuget/nuget.client @@ -230,68 +230,68 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d + 4519b9f0e25cae3c6d06cbd80cae9d6bd5fb90f7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d + 4519b9f0e25cae3c6d06cbd80cae9d6bd5fb90f7 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d + 4519b9f0e25cae3c6d06cbd80cae9d6bd5fb90f7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d + 4519b9f0e25cae3c6d06cbd80cae9d6bd5fb90f7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - dfc5664c294078401aa134df3edff5ce1a7d7322 + 925e025a1ad14f0b6f094e5b2d5cc9f62ada294c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 771c94f62db5..fa01eac2630f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -172,11 +172,11 @@ 8.0.22 - 8.0.22-servicing.25517.13 - 8.0.22-servicing.25517.13 - 8.0.22-servicing.25517.13 - 8.0.22-servicing.25517.13 - 8.0.22-servicing.25517.13 + 8.0.22-servicing.25528.8 + 8.0.22-servicing.25528.8 + 8.0.22-servicing.25528.8 + 8.0.22-servicing.25528.8 + 8.0.22-servicing.25528.8 8.0.22 @@ -187,7 +187,7 @@ - 8.0.22-servicing.25517.2 + 8.0.22-servicing.25528.2 From 2fa9beee6233beabbd7d2b212fc8f850c96a5629 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Tue, 28 Oct 2025 13:43:50 +0000 Subject: [PATCH 227/392] Merged PR 54679: [internal/release/8.0.1xx] Update dependencies from dnceng/internal/dotnet-aspnetcore, dnceng/internal/dotnet-windowsdesktop This pull request updates the following dependencies [marker]: <> (Begin:5ae73aca-14b4-4570-17b0-08dbd53e3897) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - **Subscription**: [5ae73aca-14b4-4570-17b0-08dbd53e3897](https://maestro.dot.net/subscriptions?search=5ae73aca-14b4-4570-17b0-08dbd53e3897) - **Build**: [20251028.8](https://dev.azure.com/dnceng/internal/_build/results?buildId=2826220) ([288820](https://maestro.dot.net/channel/3880/azdo:dnceng:internal:dotnet-aspnetcore/build/288820)) - **Date Produced**: October 28, 2025 1:25:22 PM UTC - **Commit**: [ee417479933278bb5aadc5944706a96b5ef74a5d](https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore?_a=history&version=GCee417479933278bb5aadc5944706a96b5ef74a5d) - **Branch**: [refs/heads/internal/release/8.0](https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore?version=GBrefs/heads/internal/release/8.0) [DependencyUpdate]: <> (Begin) - **Updates**: - From [8.0.22-servicing.25517.13 to 8.0.22-servicing.25528.8][3] - dotnet-dev-certs - dotnet-user-jwts - dotnet-user-secrets - Microsoft.AspNetCore.Analyzers - Microsoft.AspNetCore.App.Ref.Internal - Microsoft.AspNetCore.Components.SdkAnalyzers - Microsoft.AspNetCore.DeveloperCertificates.XPlat - Microsoft.AspNetCore.Mvc.Analyzers - Microsoft.AspNetCore.Mvc.Api.Analyzers - VS.Redist.Common.AspNetCore.SharedFramework.x64.8.0 - From [8.0.22 to 8.0.22][3] - Microsoft.AspNetCore.App.Ref - Microsoft.AspNetCore.App.Runtime.win-x64 - Microsoft.AspNetCore.Authorization - Microsoft.AspNetCore.Components.Web - Microsoft.AspNetCore.TestHost - Microsoft.Extensions.FileProviders.Embedded - Microsoft.Extensions.ObjectPool - Microsoft.JSInterop [3]: https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore/branches?baseVersion=GC8c4d2304d886fd33d4d1315b9fd438afbc46a4c0&targetVersion=GCee417479933278bb5aadc5944706a96b5ef74a5d&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:5ae73aca-14b4-4570-17b0-08dbd53e3897) [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.NET.Sdk.WindowsDesktop**: from 8.0.22-servicing.25517.2 to 8.0.22-servicing.25528.2 (parent: Microsoft.WindowsDesktop.App.Ref) [DependencyUpdate]: <> (End) [marker]: <> (End:Coherency Updates) [marker]: <> (Begin:43ca46dd-3142-499e-f076-08dbd5a5cbe7) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - **Subscription**: [43ca46dd-3142-499e-f076-08dbd5a5cbe7](https://maestro.dot.net/subscriptions?search=43ca46dd-3142-499e-f076-08dbd5a... --- NuGet.config | 8 ++--- eng/Version.Details.xml | 72 ++++++++++++++++++++--------------------- eng/Versions.props | 12 +++---- 3 files changed, 46 insertions(+), 46 deletions(-) diff --git a/NuGet.config b/NuGet.config index 751679dcdaab..abc30a9e231f 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,7 @@ - + @@ -26,7 +26,7 @@ - + @@ -51,7 +51,7 @@ - + @@ -62,7 +62,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0bf288331aec..715649bf2151 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -111,13 +111,13 @@ https://github.com/dotnet/roslyn a77b6e41d030878096fa496e00e4c0dffe5af9f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/devdiv/DevDiv/_git/NuGet-NuGet.Client-Trusted @@ -230,68 +230,68 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d + 4519b9f0e25cae3c6d06cbd80cae9d6bd5fb90f7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d + 4519b9f0e25cae3c6d06cbd80cae9d6bd5fb90f7 https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d + 4519b9f0e25cae3c6d06cbd80cae9d6bd5fb90f7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-windowsdesktop - 7852742e677f89af8ddf5fc94e0d8b3f47b16a8d + 4519b9f0e25cae3c6d06cbd80cae9d6bd5fb90f7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - dfc5664c294078401aa134df3edff5ce1a7d7322 + 925e025a1ad14f0b6f094e5b2d5cc9f62ada294c https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://github.com/dotnet/razor @@ -308,19 +308,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://github.com/dotnet/xdt @@ -439,7 +439,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore - 8c4d2304d886fd33d4d1315b9fd438afbc46a4c0 + ee417479933278bb5aadc5944706a96b5ef74a5d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index f2916d640088..3aabc0a546b8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -171,11 +171,11 @@ 8.0.22 - 8.0.22-servicing.25517.13 - 8.0.22-servicing.25517.13 - 8.0.22-servicing.25517.13 - 8.0.22-servicing.25517.13 - 8.0.22-servicing.25517.13 + 8.0.22-servicing.25528.8 + 8.0.22-servicing.25528.8 + 8.0.22-servicing.25528.8 + 8.0.22-servicing.25528.8 + 8.0.22-servicing.25528.8 8.0.22 @@ -186,7 +186,7 @@ - 8.0.22-servicing.25517.2 + 8.0.22-servicing.25528.2 From 85f11839d85214ab4563f036c52dc95db37fab16 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 4 Nov 2025 10:25:03 -0800 Subject: [PATCH 228/392] Update branding to 8.0.123 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index cf3cc2003734..f18086f2a685 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,7 +11,7 @@ - 8.0.122 + 8.0.123 true release From 70a14d78a85b4ce7797693e73059ccd441ab22b1 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 4 Nov 2025 10:25:32 -0800 Subject: [PATCH 229/392] Update branding to 8.0.320 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 89fd4d96f490..988b8bfb58fa 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,7 +11,7 @@ - 8.0.319 + 8.0.320 true release From 6b2462df1d8dbb1db687eda569265ffbaaac2684 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 7 Nov 2025 02:03:34 +0000 Subject: [PATCH 230/392] Update dependencies from https://github.com/dotnet/arcade build 20251105.2 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25515.1 -> To Version 8.0.0-beta.25555.2 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- .../job/publish-build-assets.yml | 5 +++++ .../templates-official/post-build/post-build.yml | 5 +++++ .../templates/job/publish-build-assets.yml | 5 +++++ eng/common/templates/post-build/post-build.yml | 5 +++++ global.json | 4 ++-- 7 files changed, 32 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index abc47c4bf2b7..5218f2203bd1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 6544413e02741855b701468aa8afc6cf8ca62c72 + 048a8c0ba5b72234301a3605c424ee9f9ff99772 - + https://github.com/dotnet/arcade - 6544413e02741855b701468aa8afc6cf8ca62c72 + 048a8c0ba5b72234301a3605c424ee9f9ff99772 - + https://github.com/dotnet/arcade - 6544413e02741855b701468aa8afc6cf8ca62c72 + 048a8c0ba5b72234301a3605c424ee9f9ff99772 - + https://github.com/dotnet/arcade - 6544413e02741855b701468aa8afc6cf8ca62c72 + 048a8c0ba5b72234301a3605c424ee9f9ff99772 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index f18086f2a685..ace9cd128f57 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25515.1 + 8.0.0-beta.25555.2 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -214,7 +214,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25515.1 + 8.0.0-beta.25555.2 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/templates-official/job/publish-build-assets.yml b/eng/common/templates-official/job/publish-build-assets.yml index a99d79df863c..53109246d948 100644 --- a/eng/common/templates-official/job/publish-build-assets.yml +++ b/eng/common/templates-official/job/publish-build-assets.yml @@ -152,6 +152,11 @@ jobs: BARBuildId: ${{ parameters.BARBuildId }} PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }} + # Darc is targeting 8.0, so make sure it's installed + - task: UseDotNet@2 + inputs: + version: 8.0.x + - task: AzureCLI@2 displayName: Publish Using Darc inputs: diff --git a/eng/common/templates-official/post-build/post-build.yml b/eng/common/templates-official/post-build/post-build.yml index 817e2d80dea1..07837055ee30 100644 --- a/eng/common/templates-official/post-build/post-build.yml +++ b/eng/common/templates-official/post-build/post-build.yml @@ -271,6 +271,11 @@ stages: - task: NuGetAuthenticate@1 + # Darc is targeting 8.0, so make sure it's installed + - task: UseDotNet@2 + inputs: + version: 8.0.x + - task: AzureCLI@2 displayName: Publish Using Darc inputs: diff --git a/eng/common/templates/job/publish-build-assets.yml b/eng/common/templates/job/publish-build-assets.yml index 1fcdcc9adc34..b4ece772c326 100644 --- a/eng/common/templates/job/publish-build-assets.yml +++ b/eng/common/templates/job/publish-build-assets.yml @@ -148,6 +148,11 @@ jobs: BARBuildId: ${{ parameters.BARBuildId }} PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }} + # Darc is targeting 8.0, so make sure it's installed + - task: UseDotNet@2 + inputs: + version: 8.0.x + - task: AzureCLI@2 displayName: Publish Using Darc inputs: diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index ea1785a8aa26..96ca06882384 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -267,6 +267,11 @@ stages: - task: NuGetAuthenticate@1 + # Darc is targeting 8.0, so make sure it's installed + - task: UseDotNet@2 + inputs: + version: 8.0.x + - task: AzureCLI@2 displayName: Publish Using Darc inputs: diff --git a/global.json b/global.json index f0acd9807f7f..01df768ddc8c 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25515.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25515.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25555.2", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25555.2" } } From fa6071f32776cb577435cca64aa2f5c21d827ac9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 7 Nov 2025 02:04:02 +0000 Subject: [PATCH 231/392] Update dependencies from https://github.com/dotnet/arcade build 20251105.2 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25515.1 -> To Version 8.0.0-beta.25555.2 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- .../job/publish-build-assets.yml | 5 +++++ .../templates-official/post-build/post-build.yml | 5 +++++ .../templates/job/publish-build-assets.yml | 5 +++++ eng/common/templates/post-build/post-build.yml | 5 +++++ global.json | 4 ++-- 7 files changed, 32 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5badbabdad60..c7f84cb97d76 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 6544413e02741855b701468aa8afc6cf8ca62c72 + 048a8c0ba5b72234301a3605c424ee9f9ff99772 - + https://github.com/dotnet/arcade - 6544413e02741855b701468aa8afc6cf8ca62c72 + 048a8c0ba5b72234301a3605c424ee9f9ff99772 - + https://github.com/dotnet/arcade - 6544413e02741855b701468aa8afc6cf8ca62c72 + 048a8c0ba5b72234301a3605c424ee9f9ff99772 - + https://github.com/dotnet/arcade - 6544413e02741855b701468aa8afc6cf8ca62c72 + 048a8c0ba5b72234301a3605c424ee9f9ff99772 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index e4c67f0554d2..c894eff4a506 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -35,7 +35,7 @@ 8.0.0 4.0.0 8.0.1 - 8.0.0-beta.25515.1 + 8.0.0-beta.25555.2 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -212,7 +212,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25515.1 + 8.0.0-beta.25555.2 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/templates-official/job/publish-build-assets.yml b/eng/common/templates-official/job/publish-build-assets.yml index a99d79df863c..53109246d948 100644 --- a/eng/common/templates-official/job/publish-build-assets.yml +++ b/eng/common/templates-official/job/publish-build-assets.yml @@ -152,6 +152,11 @@ jobs: BARBuildId: ${{ parameters.BARBuildId }} PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }} + # Darc is targeting 8.0, so make sure it's installed + - task: UseDotNet@2 + inputs: + version: 8.0.x + - task: AzureCLI@2 displayName: Publish Using Darc inputs: diff --git a/eng/common/templates-official/post-build/post-build.yml b/eng/common/templates-official/post-build/post-build.yml index 817e2d80dea1..07837055ee30 100644 --- a/eng/common/templates-official/post-build/post-build.yml +++ b/eng/common/templates-official/post-build/post-build.yml @@ -271,6 +271,11 @@ stages: - task: NuGetAuthenticate@1 + # Darc is targeting 8.0, so make sure it's installed + - task: UseDotNet@2 + inputs: + version: 8.0.x + - task: AzureCLI@2 displayName: Publish Using Darc inputs: diff --git a/eng/common/templates/job/publish-build-assets.yml b/eng/common/templates/job/publish-build-assets.yml index 1fcdcc9adc34..b4ece772c326 100644 --- a/eng/common/templates/job/publish-build-assets.yml +++ b/eng/common/templates/job/publish-build-assets.yml @@ -148,6 +148,11 @@ jobs: BARBuildId: ${{ parameters.BARBuildId }} PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }} + # Darc is targeting 8.0, so make sure it's installed + - task: UseDotNet@2 + inputs: + version: 8.0.x + - task: AzureCLI@2 displayName: Publish Using Darc inputs: diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index ea1785a8aa26..96ca06882384 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -267,6 +267,11 @@ stages: - task: NuGetAuthenticate@1 + # Darc is targeting 8.0, so make sure it's installed + - task: UseDotNet@2 + inputs: + version: 8.0.x + - task: AzureCLI@2 displayName: Publish Using Darc inputs: diff --git a/global.json b/global.json index f0acd9807f7f..01df768ddc8c 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25515.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25515.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25555.2", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25555.2" } } From 03e67e561803f9b902c655ed3824c74599b9cbdb Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 7 Nov 2025 11:22:09 +0000 Subject: [PATCH 232/392] Update dependencies from https://github.com/dotnet/templating build 20251107.4 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.122-servicing.25520.1 -> To Version 8.0.123-servicing.25557.4 Microsoft.TemplateEngine.Abstractions From Version 8.0.122 -> To Version 8.0.123 --- NuGet.config | 2 +- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/NuGet.config b/NuGet.config index 483025130ecf..7fe14e207f02 100644 --- a/NuGet.config +++ b/NuGet.config @@ -20,7 +20,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index abc47c4bf2b7..6c9a2aaf32ac 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/templating - cea273163ea07402a1702ace8e5ab1fac3ec805a + 2a3d0e60b37359c350cc045fecdadb0c7b652591 - + https://github.com/dotnet/templating - cea273163ea07402a1702ace8e5ab1fac3ec805a + 2a3d0e60b37359c350cc045fecdadb0c7b652591 - + https://github.com/dotnet/templating - cea273163ea07402a1702ace8e5ab1fac3ec805a + 2a3d0e60b37359c350cc045fecdadb0c7b652591 diff --git a/eng/Versions.props b/eng/Versions.props index f18086f2a685..ccc2415813e1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -142,13 +142,13 @@ - 8.0.122 + 8.0.123 $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.122-servicing.25520.1 + 8.0.123-servicing.25557.4 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 6681bfdb92abeb2725b1ac1fa0ab016a12f2a48f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 7 Nov 2025 23:05:31 +0000 Subject: [PATCH 233/392] Initial plan From c1c558a225638c46f9696733aac877952fd9a55c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 7 Nov 2025 23:06:03 +0000 Subject: [PATCH 234/392] Initial plan From a4a2cac72066889dfd488872e29da24312db8971 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 7 Nov 2025 23:14:32 +0000 Subject: [PATCH 235/392] Backport PR #51558: Fix VS2022 rejecting preview SDKs Co-authored-by: nagilson <23152278+nagilson@users.noreply.github.com> --- build/RunTestsOnHelix.cmd | 3 ++ eng/common/tools.ps1 | 14 ++++++--- eng/enable-preview-sdks.ps1 | 59 +++++++++++++++++++++++++++++++++++++ 3 files changed, 72 insertions(+), 4 deletions(-) create mode 100644 eng/enable-preview-sdks.ps1 diff --git a/build/RunTestsOnHelix.cmd b/build/RunTestsOnHelix.cmd index c414a43205f3..d1b051e42001 100644 --- a/build/RunTestsOnHelix.cmd +++ b/build/RunTestsOnHelix.cmd @@ -10,6 +10,9 @@ set PATH=%DOTNET_ROOT%;%PATH% set DOTNET_MULTILEVEL_LOOKUP=0 set TestFullMSBuild=%1 +REM Ensure Visual Studio instances allow preview SDKs +PowerShell -ExecutionPolicy ByPass -NoProfile -File "%HELIX_CORRELATION_PAYLOAD%\t\eng\enable-preview-sdks.ps1" + set TestExecutionDirectory=%CD%\testExecutionDirectory mkdir %TestExecutionDirectory% diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index bb048ad125a8..0213bf2c40f9 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -296,7 +296,7 @@ function InstallDotNet([string] $dotnetRoot, if ($runtime -eq "aspnetcore") { $runtimePath = $runtimePath + "\Microsoft.AspNetCore.App" } if ($runtime -eq "windowsdesktop") { $runtimePath = $runtimePath + "\Microsoft.WindowsDesktop.App" } $runtimePath = $runtimePath + "\" + $version - + $dotnetVersionLabel = "runtime toolset '$runtime/$architecture v$version'" if (Test-Path $runtimePath) { @@ -545,19 +545,25 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } + if (!$vsRequirements) { + if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { + $vsRequirements = $GlobalJson.tools.vs + } else { + $vsRequirements = $null + } + } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if (Get-Member -InputObject $vsRequirements -Name 'version') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { $args += '-version' $args += $vsRequirements.version } - if (Get-Member -InputObject $vsRequirements -Name 'components') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component diff --git a/eng/enable-preview-sdks.ps1 b/eng/enable-preview-sdks.ps1 new file mode 100644 index 000000000000..d21466f856da --- /dev/null +++ b/eng/enable-preview-sdks.ps1 @@ -0,0 +1,59 @@ +param() + +. $PSScriptRoot\common\tools.ps1 + +try { + $vsInfo = LocateVisualStudio +} +catch { + Write-Host "LocateVisualStudio failed: $_" + return +} + +if ($null -eq $vsInfo) { + Write-Host "No Visual Studio instance detected; preview SDKs remain enabled by default." + return +} + +$vsId = $vsInfo.instanceId +$vsMajorVersion = $vsInfo.installationVersion.Split('.')[0] +$instanceDir = Join-Path $env:USERPROFILE "AppData\Local\Microsoft\VisualStudio\$vsMajorVersion.0_$vsId" + +Create-Directory $instanceDir + +$sdkFile = Join-Path $instanceDir 'sdk.txt' + +$desiredLine = 'UsePreviews=True' +$existingLines = @() + +if (Test-Path $sdkFile) { + $existingLines = @(Get-Content -Path $sdkFile -Encoding ASCII) +} + +# Determine how to place the UsePreviews flag based on existing content. +$replacementIndex = -1 +for ($i = 0; $i -lt $existingLines.Count; $i++) { + if ($existingLines[$i] -match '^UsePreviews=.*$') { + $replacementIndex = $i + break + } +} + +# Replace the existing line to enforce it as True +if ($replacementIndex -ge 0) { + $updatedLines = $existingLines + $updatedLines[$replacementIndex] = $desiredLine +} +elseif ($existingLines.Count -gt 0) { + # Write to the top of the file but keep the remaining portion (assumption: order does not matter to VS) + $updatedLines = @($desiredLine) + $existingLines +} +else { + # Write a whole new file + $updatedLines = @($desiredLine) +} + +Set-Content -Path $sdkFile -Value $updatedLines -Encoding ASCII + +Write-Host "Updated $sdkFile" +Get-Content -Path $sdkFile | ForEach-Object { Write-Host " $_" } From 5b556bac123ea9edd2eb74b60fd7a9830627843c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 7 Nov 2025 23:14:47 +0000 Subject: [PATCH 236/392] Backport VS Release fix - enable preview SDKs and handle null vsRequirements Co-authored-by: nagilson <23152278+nagilson@users.noreply.github.com> --- build/RunTestsOnHelix.cmd | 3 ++ eng/common/tools.ps1 | 14 ++++++--- eng/enable-preview-sdks.ps1 | 59 +++++++++++++++++++++++++++++++++++++ 3 files changed, 72 insertions(+), 4 deletions(-) create mode 100644 eng/enable-preview-sdks.ps1 diff --git a/build/RunTestsOnHelix.cmd b/build/RunTestsOnHelix.cmd index c414a43205f3..d1b051e42001 100644 --- a/build/RunTestsOnHelix.cmd +++ b/build/RunTestsOnHelix.cmd @@ -10,6 +10,9 @@ set PATH=%DOTNET_ROOT%;%PATH% set DOTNET_MULTILEVEL_LOOKUP=0 set TestFullMSBuild=%1 +REM Ensure Visual Studio instances allow preview SDKs +PowerShell -ExecutionPolicy ByPass -NoProfile -File "%HELIX_CORRELATION_PAYLOAD%\t\eng\enable-preview-sdks.ps1" + set TestExecutionDirectory=%CD%\testExecutionDirectory mkdir %TestExecutionDirectory% diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index bb048ad125a8..0213bf2c40f9 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -296,7 +296,7 @@ function InstallDotNet([string] $dotnetRoot, if ($runtime -eq "aspnetcore") { $runtimePath = $runtimePath + "\Microsoft.AspNetCore.App" } if ($runtime -eq "windowsdesktop") { $runtimePath = $runtimePath + "\Microsoft.WindowsDesktop.App" } $runtimePath = $runtimePath + "\" + $version - + $dotnetVersionLabel = "runtime toolset '$runtime/$architecture v$version'" if (Test-Path $runtimePath) { @@ -545,19 +545,25 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } + if (!$vsRequirements) { + if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { + $vsRequirements = $GlobalJson.tools.vs + } else { + $vsRequirements = $null + } + } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if (Get-Member -InputObject $vsRequirements -Name 'version') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { $args += '-version' $args += $vsRequirements.version } - if (Get-Member -InputObject $vsRequirements -Name 'components') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component diff --git a/eng/enable-preview-sdks.ps1 b/eng/enable-preview-sdks.ps1 new file mode 100644 index 000000000000..d21466f856da --- /dev/null +++ b/eng/enable-preview-sdks.ps1 @@ -0,0 +1,59 @@ +param() + +. $PSScriptRoot\common\tools.ps1 + +try { + $vsInfo = LocateVisualStudio +} +catch { + Write-Host "LocateVisualStudio failed: $_" + return +} + +if ($null -eq $vsInfo) { + Write-Host "No Visual Studio instance detected; preview SDKs remain enabled by default." + return +} + +$vsId = $vsInfo.instanceId +$vsMajorVersion = $vsInfo.installationVersion.Split('.')[0] +$instanceDir = Join-Path $env:USERPROFILE "AppData\Local\Microsoft\VisualStudio\$vsMajorVersion.0_$vsId" + +Create-Directory $instanceDir + +$sdkFile = Join-Path $instanceDir 'sdk.txt' + +$desiredLine = 'UsePreviews=True' +$existingLines = @() + +if (Test-Path $sdkFile) { + $existingLines = @(Get-Content -Path $sdkFile -Encoding ASCII) +} + +# Determine how to place the UsePreviews flag based on existing content. +$replacementIndex = -1 +for ($i = 0; $i -lt $existingLines.Count; $i++) { + if ($existingLines[$i] -match '^UsePreviews=.*$') { + $replacementIndex = $i + break + } +} + +# Replace the existing line to enforce it as True +if ($replacementIndex -ge 0) { + $updatedLines = $existingLines + $updatedLines[$replacementIndex] = $desiredLine +} +elseif ($existingLines.Count -gt 0) { + # Write to the top of the file but keep the remaining portion (assumption: order does not matter to VS) + $updatedLines = @($desiredLine) + $existingLines +} +else { + # Write a whole new file + $updatedLines = @($desiredLine) +} + +Set-Content -Path $sdkFile -Value $updatedLines -Encoding ASCII + +Write-Host "Updated $sdkFile" +Get-Content -Path $sdkFile | ForEach-Object { Write-Host " $_" } From efd08c1ef40541c40c877d1cb1ace65b36dbe403 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 10 Nov 2025 11:46:52 +0000 Subject: [PATCH 237/392] Update dependencies from https://github.com/dotnet/msbuild build 20251110.7 On relative base path root Microsoft.SourceBuild.Intermediate.msbuild , Microsoft.Build.Localization From Version 17.8.43-servicing-25517-04 -> To Version 17.8.45-servicing-25560-07 Microsoft.Build From Version 17.8.43 -> To Version 17.8.45 --- NuGet.config | 1 + eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 7fe14e207f02..f6cecc32fe19 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,6 +14,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9117020ced94..79e497f2802f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -55,17 +55,17 @@ https://github.com/dotnet/emsdk 42532a7524749ad5d48d1820eaa7d4ab7e77faa6 - + https://github.com/dotnet/msbuild - 6be7d7558719130df3de51b2ab8ce13e21e99a3b + 2a7a854c1b8dd412669c2c114ff18c9fa412ace7 - + https://github.com/dotnet/msbuild - 6be7d7558719130df3de51b2ab8ce13e21e99a3b + 2a7a854c1b8dd412669c2c114ff18c9fa412ace7 - + https://github.com/dotnet/msbuild - 6be7d7558719130df3de51b2ab8ce13e21e99a3b + 2a7a854c1b8dd412669c2c114ff18c9fa412ace7 diff --git a/eng/Versions.props b/eng/Versions.props index 7b78ffc659ee..977aa3b25d3e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -123,7 +123,7 @@ - 17.8.43 + 17.8.45 $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) - 17.8.43-servicing-25517-04 + 17.8.45-servicing-25560-07 $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) $(MicrosoftBuildTasksCorePackageVersion) From e21a0d8640c7a616ff71dd9a7401891b2a868383 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 3 Nov 2025 18:26:30 +0000 Subject: [PATCH 238/392] Update MicrosoftBuildMinimumVersion to 17.8.43 Co-authored-by: marcpopMSFT <12663534+marcpopMSFT@users.noreply.github.com> --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 67d2c1427a8a..98b51dddfbc5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -132,7 +132,7 @@ so target one that matches the version in minimumMSBuildVersion. This avoids the need to juggle references to packages that have been updated in newer MSBuild. --> - 17.8.27 + 17.8.43 $(MicrosoftBuildMinimumVersion) $(MicrosoftBuildMinimumVersion) 17.11.48-servicing-25466-05 From c85f0b7c8b69815078ff99f0875e406be91b4fcd Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 11 Nov 2025 02:02:18 +0000 Subject: [PATCH 239/392] Update dependencies from https://github.com/dotnet/msbuild build 20251110.4 On relative base path root Microsoft.SourceBuild.Intermediate.msbuild , Microsoft.Build.Localization From Version 17.10.48-servicing-25520-09 -> To Version 17.10.49-servicing-25560-04 Microsoft.Build From Version 17.10.48 -> To Version 17.10.49 --- NuGet.config | 2 +- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/NuGet.config b/NuGet.config index 94a70872537e..5c22f343546d 100644 --- a/NuGet.config +++ b/NuGet.config @@ -15,7 +15,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c7f84cb97d76..acd287c149ba 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -55,17 +55,17 @@ https://github.com/dotnet/emsdk 42532a7524749ad5d48d1820eaa7d4ab7e77faa6 - + https://github.com/dotnet/msbuild - 7ed9cf3b60e549ceeafbac09cfe2e6ed51124897 + 1d044e3560b5c2b365548a212afc65011b6f6c8b - + https://github.com/dotnet/msbuild - 7ed9cf3b60e549ceeafbac09cfe2e6ed51124897 + 1d044e3560b5c2b365548a212afc65011b6f6c8b - + https://github.com/dotnet/msbuild - 7ed9cf3b60e549ceeafbac09cfe2e6ed51124897 + 1d044e3560b5c2b365548a212afc65011b6f6c8b diff --git a/eng/Versions.props b/eng/Versions.props index c894eff4a506..2f3924048de3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -125,14 +125,14 @@ - 17.10.48 + 17.10.49 $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) - 17.10.48-servicing-25520-09 + 17.10.49-servicing-25560-04 $(MicrosoftBuildPackageVersion) $(MicrosoftBuildPackageVersion) $(MicrosoftBuildTasksCorePackageVersion) From 385ae4c29a10388e35dbe2d455a6de5128f808fb Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 11 Nov 2025 21:19:06 +0000 Subject: [PATCH 240/392] [release/8.0.3xx] Update dependencies from dotnet/templating (#51634) [release/8.0.3xx] Update dependencies from dotnet/templating - Merge branch 'release/8.0.3xx' into darc-release/8.0.3xx-0c4c389a-c089-4ebb-9108-8249560971be - Merge branch 'release/8.0.3xx' into darc-release/8.0.3xx-0c4c389a-c089-4ebb-9108-8249560971be --- NuGet.config | 2 +- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/NuGet.config b/NuGet.config index 5c22f343546d..68279f82531f 100644 --- a/NuGet.config +++ b/NuGet.config @@ -22,7 +22,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index acd287c149ba..20c47e0cba57 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/templating - e4b2ba8a8de579e45950e2c49a77fba00147e5e4 + d3b5c6c0e06f7edd8f2187a230f1dfebed8e5592 - + https://github.com/dotnet/templating - e4b2ba8a8de579e45950e2c49a77fba00147e5e4 + d3b5c6c0e06f7edd8f2187a230f1dfebed8e5592 - + https://github.com/dotnet/templating - e4b2ba8a8de579e45950e2c49a77fba00147e5e4 + d3b5c6c0e06f7edd8f2187a230f1dfebed8e5592 diff --git a/eng/Versions.props b/eng/Versions.props index 2f3924048de3..ea3562731da4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -140,13 +140,13 @@ - 8.0.319 + 8.0.320 $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.319-servicing.25520.3 + 8.0.320-servicing.25559.1 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 2dea2d3a6822c4ceafec95557cfb03784d1d4ae3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 13 Nov 2025 06:41:52 +0000 Subject: [PATCH 241/392] Update dependencies from https://github.com/dotnet/templating build 20251112.11 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.123-servicing.25557.4 -> To Version 8.0.123-servicing.25562.11 Microsoft.TemplateEngine.Abstractions From Version 8.0.123 -> To Version 8.0.123 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index f6cecc32fe19..7d2e7b9a2286 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 79e497f2802f..4ecfe0b866c8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 2a3d0e60b37359c350cc045fecdadb0c7b652591 + 7066728cb1da9d640b5350ac7082e93c17197216 - + https://github.com/dotnet/templating - 2a3d0e60b37359c350cc045fecdadb0c7b652591 + 7066728cb1da9d640b5350ac7082e93c17197216 - + https://github.com/dotnet/templating - 2a3d0e60b37359c350cc045fecdadb0c7b652591 + 7066728cb1da9d640b5350ac7082e93c17197216 diff --git a/eng/Versions.props b/eng/Versions.props index 977aa3b25d3e..4458cb0c509c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -148,7 +148,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.123-servicing.25557.4 + 8.0.123-servicing.25562.11 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 5632b24cf85da5d5a9d9bffdd2afc2b18ecdde49 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 14 Nov 2025 07:25:06 +0000 Subject: [PATCH 242/392] [release/8.0.3xx] Update dependencies from dotnet/arcade (#51703) [release/8.0.3xx] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- eng/common/tools.ps1 | 14 ++++---------- global.json | 6 +++--- 4 files changed, 17 insertions(+), 23 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 20c47e0cba57..fb7f487ad2e3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 048a8c0ba5b72234301a3605c424ee9f9ff99772 + e8483fe03c7d3257c68f6013441da5d72eeb8392 - + https://github.com/dotnet/arcade - 048a8c0ba5b72234301a3605c424ee9f9ff99772 + e8483fe03c7d3257c68f6013441da5d72eeb8392 - + https://github.com/dotnet/arcade - 048a8c0ba5b72234301a3605c424ee9f9ff99772 + e8483fe03c7d3257c68f6013441da5d72eeb8392 - + https://github.com/dotnet/arcade - 048a8c0ba5b72234301a3605c424ee9f9ff99772 + e8483fe03c7d3257c68f6013441da5d72eeb8392 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index ea3562731da4..a6ad0f9a9f05 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -35,7 +35,7 @@ 8.0.0 4.0.0 8.0.1 - 8.0.0-beta.25555.2 + 8.0.0-beta.25562.3 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -212,7 +212,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25555.2 + 8.0.0-beta.25562.3 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 0213bf2c40f9..bb048ad125a8 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -296,7 +296,7 @@ function InstallDotNet([string] $dotnetRoot, if ($runtime -eq "aspnetcore") { $runtimePath = $runtimePath + "\Microsoft.AspNetCore.App" } if ($runtime -eq "windowsdesktop") { $runtimePath = $runtimePath + "\Microsoft.WindowsDesktop.App" } $runtimePath = $runtimePath + "\" + $version - + $dotnetVersionLabel = "runtime toolset '$runtime/$architecture v$version'" if (Test-Path $runtimePath) { @@ -545,25 +545,19 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { - if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { - $vsRequirements = $GlobalJson.tools.vs - } else { - $vsRequirements = $null - } - } + if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'version') { $args += '-version' $args += $vsRequirements.version } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'components') { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component diff --git a/global.json b/global.json index 01df768ddc8c..1717b19c18fe 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "tools": { - "dotnet": "8.0.121", + "dotnet": "8.0.122", "runtimes": { "dotnet": [ "$(VSRedistCommonNetCoreSharedFrameworkx6480PackageVersion)" @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25555.2", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25555.2" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25562.3", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25562.3" } } From ff7cab7d47cc408c0aec961fd282d66fbf8b804b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 14 Nov 2025 16:28:47 +0000 Subject: [PATCH 243/392] [release/8.0.4xx] Update dependencies from dotnet/templating (#51730) [release/8.0.4xx] Update dependencies from dotnet/templating - Merge branch 'release/8.0.4xx' into darc-release/8.0.4xx-5b7a27f6-90be-4b0c-8870-71a20ffca612 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index 6d4e59aa1e66..4cdd71f1133e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1736cc5d2b8f..ff6c57e2f62a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - c3c91ebe67d2d7c002cabc03efd14a450b11979b + 98f9e6489e60d738e2bc75dd9e2d409dd3b56821 - + https://github.com/dotnet/templating - c3c91ebe67d2d7c002cabc03efd14a450b11979b + 98f9e6489e60d738e2bc75dd9e2d409dd3b56821 - + https://github.com/dotnet/templating - c3c91ebe67d2d7c002cabc03efd14a450b11979b + 98f9e6489e60d738e2bc75dd9e2d409dd3b56821 diff --git a/eng/Versions.props b/eng/Versions.props index 849d42ea01ad..6574a27e6e4a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -149,7 +149,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.417-servicing.25559.2 + 8.0.417-servicing.25563.1 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From c748573f4099a3cdb1483e1953defcc3393a782a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 14 Nov 2025 17:57:42 +0000 Subject: [PATCH 244/392] [release/8.0.4xx] Update dependencies from dotnet/arcade (#51704) [release/8.0.4xx] Update dependencies from dotnet/arcade - Merge branch 'release/8.0.4xx' into darc-release/8.0.4xx-93242ec5-a376-4aae-b11d-9f31973b46fe - Merge branch 'release/8.0.4xx' into darc-release/8.0.4xx-93242ec5-a376-4aae-b11d-9f31973b46fe - Merge branch 'release/8.0.4xx' into darc-release/8.0.4xx-93242ec5-a376-4aae-b11d-9f31973b46fe - Merge branch 'release/8.0.4xx' into darc-release/8.0.4xx-93242ec5-a376-4aae-b11d-9f31973b46fe --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- eng/common/tools.ps1 | 14 ++++---------- global.json | 6 +++--- 4 files changed, 17 insertions(+), 23 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ff6c57e2f62a..b8248544f501 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 048a8c0ba5b72234301a3605c424ee9f9ff99772 + e8483fe03c7d3257c68f6013441da5d72eeb8392 - + https://github.com/dotnet/arcade - 048a8c0ba5b72234301a3605c424ee9f9ff99772 + e8483fe03c7d3257c68f6013441da5d72eeb8392 - + https://github.com/dotnet/arcade - 048a8c0ba5b72234301a3605c424ee9f9ff99772 + e8483fe03c7d3257c68f6013441da5d72eeb8392 - + https://github.com/dotnet/arcade - 048a8c0ba5b72234301a3605c424ee9f9ff99772 + e8483fe03c7d3257c68f6013441da5d72eeb8392 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 6574a27e6e4a..531dd3bdd886 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 8.0.0 4.0.0 8.0.0 - 8.0.0-beta.25555.2 + 8.0.0-beta.25562.3 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25555.2 + 8.0.0-beta.25562.3 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 0213bf2c40f9..bb048ad125a8 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -296,7 +296,7 @@ function InstallDotNet([string] $dotnetRoot, if ($runtime -eq "aspnetcore") { $runtimePath = $runtimePath + "\Microsoft.AspNetCore.App" } if ($runtime -eq "windowsdesktop") { $runtimePath = $runtimePath + "\Microsoft.WindowsDesktop.App" } $runtimePath = $runtimePath + "\" + $version - + $dotnetVersionLabel = "runtime toolset '$runtime/$architecture v$version'" if (Test-Path $runtimePath) { @@ -545,25 +545,19 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { - if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { - $vsRequirements = $GlobalJson.tools.vs - } else { - $vsRequirements = $null - } - } + if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'version') { $args += '-version' $args += $vsRequirements.version } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'components') { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component diff --git a/global.json b/global.json index 01df768ddc8c..1717b19c18fe 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "tools": { - "dotnet": "8.0.121", + "dotnet": "8.0.122", "runtimes": { "dotnet": [ "$(VSRedistCommonNetCoreSharedFrameworkx6480PackageVersion)" @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25555.2", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25555.2" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25562.3", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25562.3" } } From 22202a19dc84d3fcb88b905eb564fc60f58a1f46 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Fri, 14 Nov 2025 10:53:42 -0800 Subject: [PATCH 245/392] Add new package source for DotNet-msbuild-Trusted --- NuGet.config | 1 + 1 file changed, 1 insertion(+) diff --git a/NuGet.config b/NuGet.config index 2a509cf79e14..3362e1b5fc55 100644 --- a/NuGet.config +++ b/NuGet.config @@ -17,6 +17,7 @@ + From 6846a2ac5c4beb8b25acddc4d9a2d71137d12219 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Fri, 14 Nov 2025 13:52:00 -0800 Subject: [PATCH 246/392] Refactor vsRequirements assignment logic in tools.ps1 --- eng/common/tools.ps1 | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index bb048ad125a8..76e639598408 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -545,19 +545,25 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } + if (!$vsRequirements) { + if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { + $vsRequirements = $GlobalJson.tools.vs + } else { + $vsRequirements = $null + } + } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if (Get-Member -InputObject $vsRequirements -Name 'version') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { $args += '-version' $args += $vsRequirements.version } - if (Get-Member -InputObject $vsRequirements -Name 'components') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component From 72c1837218daf1ed189fa0be81323504561c1a90 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Fri, 14 Nov 2025 15:11:59 -0800 Subject: [PATCH 247/392] Refactor vsRequirements handling in tools.ps1 --- eng/common/tools.ps1 | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index bb048ad125a8..76e639598408 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -545,19 +545,25 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } + if (!$vsRequirements) { + if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { + $vsRequirements = $GlobalJson.tools.vs + } else { + $vsRequirements = $null + } + } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if (Get-Member -InputObject $vsRequirements -Name 'version') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { $args += '-version' $args += $vsRequirements.version } - if (Get-Member -InputObject $vsRequirements -Name 'components') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component From 743b27edd7f9613ed5f6a1cc95d11999e476aba7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 15 Nov 2025 02:03:32 +0000 Subject: [PATCH 248/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20251114.4 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25522.3 -> To Version 8.0.0-alpha.1.25564.4 --- NuGet.config | 6 ------ eng/Version.Details.xml | 4 ++-- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 1c2b1e4c0214..014e1d514035 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,7 +13,6 @@ - @@ -21,13 +20,11 @@ - - @@ -52,7 +49,6 @@ - @@ -60,10 +56,8 @@ - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 291e18a178ca..fff0edbea925 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - 449148366d9105de8a6470ebc4ba198926e9a30a + 1bffa52c9f78c19618fa929eea4916b0c6d27403 From a3fcf8ec1048dd1a69f6e1fb923eec1218ec6f3d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 15 Nov 2025 02:04:42 +0000 Subject: [PATCH 249/392] Update dependencies from https://github.com/dotnet/arcade build 20251113.4 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25562.3 -> To Version 8.0.0-beta.25563.4 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b8248544f501..cc08898d09b0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - e8483fe03c7d3257c68f6013441da5d72eeb8392 + 952abb7faea30d565b847d31411d019904a613a0 - + https://github.com/dotnet/arcade - e8483fe03c7d3257c68f6013441da5d72eeb8392 + 952abb7faea30d565b847d31411d019904a613a0 - + https://github.com/dotnet/arcade - e8483fe03c7d3257c68f6013441da5d72eeb8392 + 952abb7faea30d565b847d31411d019904a613a0 - + https://github.com/dotnet/arcade - e8483fe03c7d3257c68f6013441da5d72eeb8392 + 952abb7faea30d565b847d31411d019904a613a0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 269acbf537f9..2fd6db7ff4f8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 8.0.0 4.0.0 8.0.0 - 8.0.0-beta.25562.3 + 8.0.0-beta.25563.4 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25562.3 + 8.0.0-beta.25563.4 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 1717b19c18fe..1f47b9c7583a 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25562.3", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25562.3" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25563.4", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25563.4" } } From 4185a548c732f74e4b45ffcc711d49e7005aa2ea Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 17 Nov 2025 04:11:59 +0000 Subject: [PATCH 250/392] Update dependencies from https://github.com/dotnet/templating build 20251116.2 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.123-servicing.25562.11 -> To Version 8.0.123-servicing.25566.2 Microsoft.TemplateEngine.Abstractions From Version 8.0.123 -> To Version 8.0.123 --- NuGet.config | 3 +-- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 014e1d514035..c0399219d4fa 100644 --- a/NuGet.config +++ b/NuGet.config @@ -3,7 +3,6 @@ - @@ -22,7 +21,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fff0edbea925..655c8b54c63c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 7066728cb1da9d640b5350ac7082e93c17197216 + 60c0235b29a158b4ea57b440bfa498ebed6641ff - + https://github.com/dotnet/templating - 7066728cb1da9d640b5350ac7082e93c17197216 + 60c0235b29a158b4ea57b440bfa498ebed6641ff - + https://github.com/dotnet/templating - 7066728cb1da9d640b5350ac7082e93c17197216 + 60c0235b29a158b4ea57b440bfa498ebed6641ff diff --git a/eng/Versions.props b/eng/Versions.props index 5397f3d19608..63ce138618b2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -148,7 +148,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.123-servicing.25562.11 + 8.0.123-servicing.25566.2 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 599453aff1e6b47419f8a4f8117c83b7f8e854cf Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 10:08:27 +0000 Subject: [PATCH 251/392] [release/8.0.1xx] Update dependencies from dotnet/arcade (#51702) [release/8.0.1xx] Update dependencies from dotnet/arcade - Merge branch 'release/8.0.1xx' into darc-release/8.0.1xx-16fa3946-4b65-4515-a9ba-18db29727d2c - Merge branch 'release/8.0.1xx' into darc-release/8.0.1xx-16fa3946-4b65-4515-a9ba-18db29727d2c - Merge branch 'release/8.0.1xx' into darc-release/8.0.1xx-16fa3946-4b65-4515-a9ba-18db29727d2c - Revert change to tools.ps1 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- eng/common/tools.ps1 | 2 +- global.json | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 655c8b54c63c..a285fa45b0cf 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 048a8c0ba5b72234301a3605c424ee9f9ff99772 + 952abb7faea30d565b847d31411d019904a613a0 - + https://github.com/dotnet/arcade - 048a8c0ba5b72234301a3605c424ee9f9ff99772 + 952abb7faea30d565b847d31411d019904a613a0 - + https://github.com/dotnet/arcade - 048a8c0ba5b72234301a3605c424ee9f9ff99772 + 952abb7faea30d565b847d31411d019904a613a0 - + https://github.com/dotnet/arcade - 048a8c0ba5b72234301a3605c424ee9f9ff99772 + 952abb7faea30d565b847d31411d019904a613a0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 63ce138618b2..323359c1f544 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25555.2 + 8.0.0-beta.25563.4 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -214,7 +214,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25555.2 + 8.0.0-beta.25563.4 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 0213bf2c40f9..6764bdedbf05 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -960,4 +960,4 @@ function Enable-Nuget-EnhancedRetry() { Write-PipelineSetVariable -Name 'NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000' Write-PipelineSetVariable -Name 'NUGET_RETRY_HTTP_429' -Value 'true' } -} +} \ No newline at end of file diff --git a/global.json b/global.json index 01df768ddc8c..1f47b9c7583a 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "tools": { - "dotnet": "8.0.121", + "dotnet": "8.0.122", "runtimes": { "dotnet": [ "$(VSRedistCommonNetCoreSharedFrameworkx6480PackageVersion)" @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25555.2", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25555.2" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25563.4", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25563.4" } } From 24be72fbf3348240069c8067e013db0dad5ba6d6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 20 Nov 2025 02:01:34 +0000 Subject: [PATCH 252/392] Update dependencies from https://github.com/dotnet/roslyn build 20251119.8 On relative base path root Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.CodeAnalysis.CSharp.CodeStyle , Microsoft.CodeAnalysis.CSharp.Features , Microsoft.CodeAnalysis.CSharp.Workspaces , Microsoft.CodeAnalysis.Workspaces.MSBuild , Microsoft.Net.Compilers.Toolset , Microsoft.Net.Compilers.Toolset.Framework From Version 4.12.0-3.25567.11 -> To Version 4.12.0-3.25569.8 --- NuGet.config | 7 ------- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 16 ++++++++-------- 3 files changed, 26 insertions(+), 33 deletions(-) diff --git a/NuGet.config b/NuGet.config index ffa2d7ac8763..a12682f6b460 100644 --- a/NuGet.config +++ b/NuGet.config @@ -24,10 +24,8 @@ - - @@ -35,13 +33,11 @@ - - @@ -68,15 +64,12 @@ - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0aba762d5e3f..9480eadc8452 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -97,43 +97,43 @@ 47d4e3f91e4e5414b6dafbf14288b9c5a798ef99 - + https://github.com/dotnet/roslyn - 80d1922899056e081c0711aa29c72b19390d360c + dc344ef24932dcd53cdd24c15364a5996bc6a675 - + https://github.com/dotnet/roslyn - 80d1922899056e081c0711aa29c72b19390d360c + dc344ef24932dcd53cdd24c15364a5996bc6a675 - + https://github.com/dotnet/roslyn - 80d1922899056e081c0711aa29c72b19390d360c + dc344ef24932dcd53cdd24c15364a5996bc6a675 - + https://github.com/dotnet/roslyn - 80d1922899056e081c0711aa29c72b19390d360c + dc344ef24932dcd53cdd24c15364a5996bc6a675 - + https://github.com/dotnet/roslyn - 80d1922899056e081c0711aa29c72b19390d360c + dc344ef24932dcd53cdd24c15364a5996bc6a675 - + https://github.com/dotnet/roslyn - 80d1922899056e081c0711aa29c72b19390d360c + dc344ef24932dcd53cdd24c15364a5996bc6a675 - + https://github.com/dotnet/roslyn - 80d1922899056e081c0711aa29c72b19390d360c + dc344ef24932dcd53cdd24c15364a5996bc6a675 - + https://github.com/dotnet/roslyn - 80d1922899056e081c0711aa29c72b19390d360c + dc344ef24932dcd53cdd24c15364a5996bc6a675 - + https://github.com/dotnet/roslyn - 80d1922899056e081c0711aa29c72b19390d360c + dc344ef24932dcd53cdd24c15364a5996bc6a675 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 38445d86c14d..5ef373606f3d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -204,14 +204,14 @@ - 4.12.0-3.25567.11 - 4.12.0-3.25567.11 - 4.12.0-3.25567.11 - 4.12.0-3.25567.11 - 4.12.0-3.25567.11 - 4.12.0-3.25567.11 - 4.12.0-3.25567.11 - 4.12.0-3.25567.11 + 4.12.0-3.25569.8 + 4.12.0-3.25569.8 + 4.12.0-3.25569.8 + 4.12.0-3.25569.8 + 4.12.0-3.25569.8 + 4.12.0-3.25569.8 + 4.12.0-3.25569.8 + 4.12.0-3.25569.8 From d63ffbbebc0cae087e64cafdc933b2f509340f50 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 21 Nov 2025 02:02:31 +0000 Subject: [PATCH 253/392] Update dependencies from https://github.com/dotnet/arcade build 20251120.4 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25562.3 -> To Version 8.0.0-beta.25570.4 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- .../templates-official/job/source-build.yml | 2 +- global.json | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cc08898d09b0..c50858ba78fc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 952abb7faea30d565b847d31411d019904a613a0 + b03a7214ed5a36d5267894adf9f8f55067962fdb - + https://github.com/dotnet/arcade - 952abb7faea30d565b847d31411d019904a613a0 + b03a7214ed5a36d5267894adf9f8f55067962fdb - + https://github.com/dotnet/arcade - 952abb7faea30d565b847d31411d019904a613a0 + b03a7214ed5a36d5267894adf9f8f55067962fdb - + https://github.com/dotnet/arcade - 952abb7faea30d565b847d31411d019904a613a0 + b03a7214ed5a36d5267894adf9f8f55067962fdb https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 2fd6db7ff4f8..f382d9b143b1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 8.0.0 4.0.0 8.0.0 - 8.0.0-beta.25563.4 + 8.0.0-beta.25570.4 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25563.4 + 8.0.0-beta.25570.4 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/templates-official/job/source-build.yml b/eng/common/templates-official/job/source-build.yml index 7b9c58a90c5e..f75400757d1e 100644 --- a/eng/common/templates-official/job/source-build.yml +++ b/eng/common/templates-official/job/source-build.yml @@ -61,7 +61,7 @@ jobs: ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore1ESPool-Svc-Internal'), False, 'NetCore1ESPool-Internal')] - image: 1es-mariner-2 + image: 1es-azurelinux-3 os: linux ${{ if ne(parameters.platform.pool, '') }}: diff --git a/global.json b/global.json index 1f47b9c7583a..fd1b6223144e 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25563.4", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25563.4" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25570.4", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25570.4" } } From c229b3a7c6a008d9621d2b99ef463d20a817d0d6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 21 Nov 2025 02:02:57 +0000 Subject: [PATCH 254/392] Update dependencies from https://github.com/dotnet/roslyn build 20251119.24 On relative base path root Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.CodeAnalysis.CSharp.CodeStyle , Microsoft.CodeAnalysis.CSharp.Features , Microsoft.CodeAnalysis.CSharp.Workspaces , Microsoft.CodeAnalysis.Workspaces.MSBuild , Microsoft.Net.Compilers.Toolset , Microsoft.Net.Compilers.Toolset.Framework From Version 4.12.0-3.25567.11 -> To Version 4.12.0-3.25569.24 --- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 16 ++++++++-------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9480eadc8452..09aadb663602 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -97,43 +97,43 @@ 47d4e3f91e4e5414b6dafbf14288b9c5a798ef99 - + https://github.com/dotnet/roslyn - dc344ef24932dcd53cdd24c15364a5996bc6a675 + a8c91ab9a47ba702087882f1794afbb9a4be21b4 - + https://github.com/dotnet/roslyn - dc344ef24932dcd53cdd24c15364a5996bc6a675 + a8c91ab9a47ba702087882f1794afbb9a4be21b4 - + https://github.com/dotnet/roslyn - dc344ef24932dcd53cdd24c15364a5996bc6a675 + a8c91ab9a47ba702087882f1794afbb9a4be21b4 - + https://github.com/dotnet/roslyn - dc344ef24932dcd53cdd24c15364a5996bc6a675 + a8c91ab9a47ba702087882f1794afbb9a4be21b4 - + https://github.com/dotnet/roslyn - dc344ef24932dcd53cdd24c15364a5996bc6a675 + a8c91ab9a47ba702087882f1794afbb9a4be21b4 - + https://github.com/dotnet/roslyn - dc344ef24932dcd53cdd24c15364a5996bc6a675 + a8c91ab9a47ba702087882f1794afbb9a4be21b4 - + https://github.com/dotnet/roslyn - dc344ef24932dcd53cdd24c15364a5996bc6a675 + a8c91ab9a47ba702087882f1794afbb9a4be21b4 - + https://github.com/dotnet/roslyn - dc344ef24932dcd53cdd24c15364a5996bc6a675 + a8c91ab9a47ba702087882f1794afbb9a4be21b4 - + https://github.com/dotnet/roslyn - dc344ef24932dcd53cdd24c15364a5996bc6a675 + a8c91ab9a47ba702087882f1794afbb9a4be21b4 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 5ef373606f3d..de314d0b9677 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -204,14 +204,14 @@ - 4.12.0-3.25569.8 - 4.12.0-3.25569.8 - 4.12.0-3.25569.8 - 4.12.0-3.25569.8 - 4.12.0-3.25569.8 - 4.12.0-3.25569.8 - 4.12.0-3.25569.8 - 4.12.0-3.25569.8 + 4.12.0-3.25569.24 + 4.12.0-3.25569.24 + 4.12.0-3.25569.24 + 4.12.0-3.25569.24 + 4.12.0-3.25569.24 + 4.12.0-3.25569.24 + 4.12.0-3.25569.24 + 4.12.0-3.25569.24 From cb2b7c1fa8b43f405073dd4688556093355c4685 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 21 Nov 2025 02:02:59 +0000 Subject: [PATCH 255/392] Update dependencies from https://github.com/dotnet/msbuild build 20251120.13 On relative base path root Microsoft.SourceBuild.Intermediate.msbuild , Microsoft.Build.Localization From Version 17.12.52-preview-25520-14 -> To Version 17.12.53-preview-25570-13 Microsoft.Build From Version 17.12.52 -> To Version 17.12.53 --- NuGet.config | 9 +-------- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 9 insertions(+), 16 deletions(-) diff --git a/NuGet.config b/NuGet.config index ffa2d7ac8763..c3f0b39b8fb1 100644 --- a/NuGet.config +++ b/NuGet.config @@ -24,24 +24,20 @@ - - - + - - @@ -68,15 +64,12 @@ - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0aba762d5e3f..e5dfd09dbb99 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -73,18 +73,18 @@ b65413ac057eb0a54c51b76b1855bc377c2132c3 - + https://github.com/dotnet/msbuild - 2681ee4bc1172eb7bc551555f3e46ddc7381c2ae + a3e0085f1d5f33a0e6250dc7b5158c28e12bd457 - + https://github.com/dotnet/msbuild - 2681ee4bc1172eb7bc551555f3e46ddc7381c2ae + a3e0085f1d5f33a0e6250dc7b5158c28e12bd457 - + https://github.com/dotnet/msbuild - 2681ee4bc1172eb7bc551555f3e46ddc7381c2ae + a3e0085f1d5f33a0e6250dc7b5158c28e12bd457 diff --git a/eng/Versions.props b/eng/Versions.props index 38445d86c14d..374c2479c706 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -180,8 +180,8 @@ At usage sites, either we use MicrosoftBuildMinimumVersion, or MicrosoftBuildVersion in source-only modes. Additionally, set the MinimumVSVersion for the installer UI that's required for targeting NetCurrent --> - 17.12.52 - 17.12.52-preview-25520-14 + 17.12.53 + 17.12.53-preview-25570-13 17.11.48 17.12 From d92dd7be3d430fd6311725bf16e305f96ef4a360 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 22 Nov 2025 02:02:24 +0000 Subject: [PATCH 256/392] Update dependencies from https://github.com/dotnet/arcade build 20251121.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25562.3 -> To Version 8.0.0-beta.25571.1 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c50858ba78fc..1d772ccc61b7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - b03a7214ed5a36d5267894adf9f8f55067962fdb + be61e5dbdc68d586c5a479486c2342f0f4161c38 - + https://github.com/dotnet/arcade - b03a7214ed5a36d5267894adf9f8f55067962fdb + be61e5dbdc68d586c5a479486c2342f0f4161c38 - + https://github.com/dotnet/arcade - b03a7214ed5a36d5267894adf9f8f55067962fdb + be61e5dbdc68d586c5a479486c2342f0f4161c38 - + https://github.com/dotnet/arcade - b03a7214ed5a36d5267894adf9f8f55067962fdb + be61e5dbdc68d586c5a479486c2342f0f4161c38 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index f382d9b143b1..bce44288688a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 8.0.0 4.0.0 8.0.0 - 8.0.0-beta.25570.4 + 8.0.0-beta.25571.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25570.4 + 8.0.0-beta.25571.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index fd1b6223144e..80521423c003 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25570.4", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25570.4" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25571.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25571.1" } } From 9421ab977c43374273bbd792a5b756ab081c4bd6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 22 Nov 2025 02:02:45 +0000 Subject: [PATCH 257/392] Update dependencies from https://github.com/dotnet/roslyn build 20251121.3 On relative base path root Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.CodeAnalysis.CSharp.CodeStyle , Microsoft.CodeAnalysis.CSharp.Features , Microsoft.CodeAnalysis.CSharp.Workspaces , Microsoft.CodeAnalysis.Workspaces.MSBuild , Microsoft.Net.Compilers.Toolset , Microsoft.Net.Compilers.Toolset.Framework From Version 4.12.0-3.25567.11 -> To Version 4.12.0-3.25571.3 --- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 16 ++++++++-------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 09aadb663602..fe204a8fc102 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -97,43 +97,43 @@ 47d4e3f91e4e5414b6dafbf14288b9c5a798ef99 - + https://github.com/dotnet/roslyn - a8c91ab9a47ba702087882f1794afbb9a4be21b4 + c795154af418b5473d67f053aec5d290a3e5c410 - + https://github.com/dotnet/roslyn - a8c91ab9a47ba702087882f1794afbb9a4be21b4 + c795154af418b5473d67f053aec5d290a3e5c410 - + https://github.com/dotnet/roslyn - a8c91ab9a47ba702087882f1794afbb9a4be21b4 + c795154af418b5473d67f053aec5d290a3e5c410 - + https://github.com/dotnet/roslyn - a8c91ab9a47ba702087882f1794afbb9a4be21b4 + c795154af418b5473d67f053aec5d290a3e5c410 - + https://github.com/dotnet/roslyn - a8c91ab9a47ba702087882f1794afbb9a4be21b4 + c795154af418b5473d67f053aec5d290a3e5c410 - + https://github.com/dotnet/roslyn - a8c91ab9a47ba702087882f1794afbb9a4be21b4 + c795154af418b5473d67f053aec5d290a3e5c410 - + https://github.com/dotnet/roslyn - a8c91ab9a47ba702087882f1794afbb9a4be21b4 + c795154af418b5473d67f053aec5d290a3e5c410 - + https://github.com/dotnet/roslyn - a8c91ab9a47ba702087882f1794afbb9a4be21b4 + c795154af418b5473d67f053aec5d290a3e5c410 - + https://github.com/dotnet/roslyn - a8c91ab9a47ba702087882f1794afbb9a4be21b4 + c795154af418b5473d67f053aec5d290a3e5c410 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index de314d0b9677..c749861286f2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -204,14 +204,14 @@ - 4.12.0-3.25569.24 - 4.12.0-3.25569.24 - 4.12.0-3.25569.24 - 4.12.0-3.25569.24 - 4.12.0-3.25569.24 - 4.12.0-3.25569.24 - 4.12.0-3.25569.24 - 4.12.0-3.25569.24 + 4.12.0-3.25571.3 + 4.12.0-3.25571.3 + 4.12.0-3.25571.3 + 4.12.0-3.25571.3 + 4.12.0-3.25571.3 + 4.12.0-3.25571.3 + 4.12.0-3.25571.3 + 4.12.0-3.25571.3 From e3fda5cb1b049feef401b4b606dfb2979423ddb3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 24 Nov 2025 02:01:57 +0000 Subject: [PATCH 258/392] Update dependencies from https://github.com/dotnet/razor build 20251123.9 On relative base path root Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport From Version 7.0.0-preview.25526.1 -> To Version 7.0.0-preview.25573.9 --- eng/Version.Details.xml | 6 +++--- eng/Versions.props | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fb7f487ad2e3..110fcb696ceb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -293,16 +293,16 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore 6254f5ca64f85b90327592dff67ea6b2ec0262c6 - + https://github.com/dotnet/razor e4d60febefa08cd99a7eccca17cce2310fa32ded - + https://github.com/dotnet/razor e4d60febefa08cd99a7eccca17cce2310fa32ded - + https://github.com/dotnet/razor e4d60febefa08cd99a7eccca17cce2310fa32ded diff --git a/eng/Versions.props b/eng/Versions.props index a6ad0f9a9f05..0767a3fff949 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -178,9 +178,9 @@ - 7.0.0-preview.25526.1 - 7.0.0-preview.25526.1 - 7.0.0-preview.25526.1 + 7.0.0-preview.25573.9 + 7.0.0-preview.25573.9 + 7.0.0-preview.25573.9 From 1544126645edff3bd336ddc4c090a5aabd694640 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 25 Nov 2025 02:02:58 +0000 Subject: [PATCH 259/392] Update dependencies from https://github.com/dotnet/arcade build 20251124.4 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25562.3 -> To Version 8.0.0-beta.25574.4 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1d772ccc61b7..b8ffd32634c8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - be61e5dbdc68d586c5a479486c2342f0f4161c38 + f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 - + https://github.com/dotnet/arcade - be61e5dbdc68d586c5a479486c2342f0f4161c38 + f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 - + https://github.com/dotnet/arcade - be61e5dbdc68d586c5a479486c2342f0f4161c38 + f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 - + https://github.com/dotnet/arcade - be61e5dbdc68d586c5a479486c2342f0f4161c38 + f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index bce44288688a..1d59abc85821 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 8.0.0 4.0.0 8.0.0 - 8.0.0-beta.25571.1 + 8.0.0-beta.25574.4 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25571.1 + 8.0.0-beta.25574.4 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 80521423c003..8b61223b70e6 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25571.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25571.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25574.4", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25574.4" } } From a06ffae71c55b764929707dbe75805281d2a27d6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 25 Nov 2025 02:03:57 +0000 Subject: [PATCH 260/392] Update dependencies from https://github.com/microsoft/testfx build 20251124.4 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25574.4 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25574.4 --- NuGet.config | 2 - eng/Version.Details.props | 166 +++++++++++--------------------------- eng/Version.Details.xml | 8 +- 3 files changed, 52 insertions(+), 124 deletions(-) diff --git a/NuGet.config b/NuGet.config index 85e13e71ea71..5e1de2835ff3 100644 --- a/NuGet.config +++ b/NuGet.config @@ -6,7 +6,6 @@ - @@ -42,7 +41,6 @@ - diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 21ec128614f9..60916a109381 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -1,4 +1,3 @@ - - - 10.0.200-preview.25563.5 - 10.0.200-preview.25563.5 - 10.0.200-preview.25563.5 - 10.0.200-preview.25563.5 - 10.0.200-preview.25563.5 - 10.0.200-preview.25563.5 - 10.0.200-preview.25563.5 - 10.0.200-preview.25563.5 - 10.0.200-preview.25563.5 10.0.0-preview.25568.105 18.1.0-preview-25568-105 @@ -27,8 +16,6 @@ This file should be imported by eng/Versions.props 5.3.0-1.25568.105 5.3.0-1.25568.105 5.3.0-1.25568.105 - 5.3.0-1.25568.105 - 5.3.0-1.25568.105 10.0.0-preview.25568.105 5.3.0-1.25568.105 5.3.0-1.25568.105 @@ -151,68 +138,45 @@ This file should be imported by eng/Versions.props 10.0.0 2.1.0 - - 10.0.0-preview.7.25377.103 - - 18.1.0-preview-25523-02 - 18.1.0-preview-25523-02 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 5.3.0-2.25560.14 5.3.0-2.25560.14 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 - - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - 7.1.0-preview.1.42 - - 18.1.0-preview-25506-01 - 18.1.0-preview-25506-01 - 18.1.0-preview-25506-01 - - 10.0.0-preview.25552.2 - 10.0.0-preview.25552.2 - 10.0.0-preview.25552.2 2.0.0-preview.1.25527.1 - - 10.0.0-beta.25555.6 - 10.0.0-beta.25555.6 - 10.0.0-beta.25555.6 - 10.0.0-beta.25555.6 - 10.0.0-beta.25555.6 - 10.0.0-beta.25555.6 - 10.0.0-beta.25555.6 - 10.0.0-beta.25555.6 - 2.1.0-preview.25571.1 - 4.1.0-preview.25571.1 + 2.1.0-preview.25574.4 + 4.1.0-preview.25574.4 - + + $(MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion) + $(MicrosoftBuildPackageVersion) + $(MicrosoftBuildLocalizationPackageVersion) + $(MicrosoftBuildNuGetSdkResolverPackageVersion) + $(MicrosoftCodeAnalysisPackageVersion) + $(MicrosoftCodeAnalysisBuildClientPackageVersion) + $(MicrosoftCodeAnalysisCSharpPackageVersion) + $(MicrosoftCodeAnalysisCSharpCodeStylePackageVersion) + $(MicrosoftCodeAnalysisCSharpFeaturesPackageVersion) + $(MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion) + $(MicrosoftCodeAnalysisRazorToolingInternalPackageVersion) + $(MicrosoftCodeAnalysisWorkspacesCommonPackageVersion) + $(MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion) + $(MicrosoftDotNetArcadeSdkPackageVersion) + $(MicrosoftDotNetBuildTasksInstallersPackageVersion) + $(MicrosoftDotNetBuildTasksTemplatingPackageVersion) + $(MicrosoftDotNetBuildTasksWorkloadsPackageVersion) + $(MicrosoftDotNetHelixSdkPackageVersion) + $(MicrosoftDotNetSignToolPackageVersion) + $(MicrosoftDotNetXliffTasksPackageVersion) + $(MicrosoftDotNetXUnitExtensionsPackageVersion) + $(MicrosoftFSharpCompilerPackageVersion) + $(MicrosoftNetCompilersToolsetPackageVersion) + $(MicrosoftNetCompilersToolsetFrameworkPackageVersion) + $(MicrosoftNETRuntimeEmscriptenSdkInternalPackageVersion) + $(MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion) + $(MicrosoftNETTestSdkPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAuthoringTemplateVerifierPackageVersion) $(MicrosoftTemplateEngineEdgePackageVersion) @@ -222,6 +186,24 @@ This file should be imported by eng/Versions.props $(MicrosoftTemplateEngineUtilsPackageVersion) $(MicrosoftTemplateSearchCommonPackageVersion) $(MicrosoftTemplateSearchTemplateDiscoveryPackageVersion) + $(MicrosoftTestPlatformBuildPackageVersion) + $(MicrosoftTestPlatformCLIPackageVersion) + $(NuGetBuildTasksPackageVersion) + $(NuGetBuildTasksConsolePackageVersion) + $(NuGetBuildTasksPackPackageVersion) + $(NuGetCommandLineXPlatPackageVersion) + $(NuGetCommandsPackageVersion) + $(NuGetCommonPackageVersion) + $(NuGetConfigurationPackageVersion) + $(NuGetCredentialsPackageVersion) + $(NuGetDependencyResolverCorePackageVersion) + $(NuGetFrameworksPackageVersion) + $(NuGetLibraryModelPackageVersion) + $(NuGetLocalizationPackageVersion) + $(NuGetPackagingPackageVersion) + $(NuGetProjectModelPackageVersion) + $(NuGetProtocolPackageVersion) + $(NuGetVersioningPackageVersion) $(dotnetdevcertsPackageVersion) $(dotnetuserjwtsPackageVersion) @@ -300,63 +282,11 @@ This file should be imported by eng/Versions.props $(SystemWindowsExtensionsPackageVersion) $(NETStandardLibraryRefPackageVersion) - - $(MicrosoftNETRuntimeEmscriptenSdkInternalPackageVersion) - - $(MicrosoftBuildPackageVersion) - $(MicrosoftBuildLocalizationPackageVersion) - - $(MicrosoftFSharpCompilerPackageVersion) - $(MicrosoftCodeAnalysisPackageVersion) - $(MicrosoftCodeAnalysisBuildClientPackageVersion) - $(MicrosoftCodeAnalysisCSharpPackageVersion) - $(MicrosoftCodeAnalysisCSharpCodeStylePackageVersion) - $(MicrosoftCodeAnalysisCSharpFeaturesPackageVersion) - $(MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion) $(MicrosoftCodeAnalysisExternalAccessHotReloadPackageVersion) $(MicrosoftCodeAnalysisPublicApiAnalyzersPackageVersion) - $(MicrosoftCodeAnalysisWorkspacesCommonPackageVersion) - $(MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion) - $(MicrosoftNetCompilersToolsetPackageVersion) - $(MicrosoftNetCompilersToolsetFrameworkPackageVersion) - - $(MicrosoftBuildNuGetSdkResolverPackageVersion) - $(NuGetBuildTasksPackageVersion) - $(NuGetBuildTasksConsolePackageVersion) - $(NuGetBuildTasksPackPackageVersion) - $(NuGetCommandLineXPlatPackageVersion) - $(NuGetCommandsPackageVersion) - $(NuGetCommonPackageVersion) - $(NuGetConfigurationPackageVersion) - $(NuGetCredentialsPackageVersion) - $(NuGetDependencyResolverCorePackageVersion) - $(NuGetFrameworksPackageVersion) - $(NuGetLibraryModelPackageVersion) - $(NuGetLocalizationPackageVersion) - $(NuGetPackagingPackageVersion) - $(NuGetProjectModelPackageVersion) - $(NuGetProtocolPackageVersion) - $(NuGetVersioningPackageVersion) - - $(MicrosoftNETTestSdkPackageVersion) - $(MicrosoftTestPlatformBuildPackageVersion) - $(MicrosoftTestPlatformCLIPackageVersion) - - $(MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion) - $(MicrosoftCodeAnalysisRazorToolingInternalPackageVersion) - $(MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion) $(MicrosoftDeploymentDotNetReleasesPackageVersion) - - $(MicrosoftDotNetArcadeSdkPackageVersion) - $(MicrosoftDotNetBuildTasksInstallersPackageVersion) - $(MicrosoftDotNetBuildTasksTemplatingPackageVersion) - $(MicrosoftDotNetBuildTasksWorkloadsPackageVersion) - $(MicrosoftDotNetHelixSdkPackageVersion) - $(MicrosoftDotNetSignToolPackageVersion) - $(MicrosoftDotNetXliffTasksPackageVersion) - $(MicrosoftDotNetXUnitExtensionsPackageVersion) $(MicrosoftTestingPlatformPackageVersion) $(MSTestPackageVersion) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2ff544fb9b79..5594a8e6ead4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - 43e592148ac1c7916908477bdffcf2a345affa6d + b8711292de9c4fda0ec07e1ce694a3b74da5240c - + https://github.com/microsoft/testfx - 43e592148ac1c7916908477bdffcf2a345affa6d + b8711292de9c4fda0ec07e1ce694a3b74da5240c https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From a5a5eb9a6c9d1d626750695ead2d28471f2abf47 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 25 Nov 2025 19:25:20 +0000 Subject: [PATCH 261/392] [release/8.0.4xx] Update dependencies from dotnet/format (#51900) [release/8.0.4xx] Update dependencies from dotnet/format --- NuGet.config | 13 +------------ eng/Version.Details.xml | 4 ++-- eng/Versions.props | 2 +- 3 files changed, 4 insertions(+), 15 deletions(-) diff --git a/NuGet.config b/NuGet.config index 89019124c4ba..b304a673831d 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,30 +4,22 @@ - - - - - - + - - - @@ -54,17 +46,14 @@ - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0393eb87e6dc..40f327510be5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -77,9 +77,9 @@ e11d7079bebc6f101c5313fe0d1de9e3d38a7c02 - + https://github.com/dotnet/format - 64cbc6c3f71ff573a72b0c83c407612ad07d5c6e + b7d483d5a0ce4e96a3468514f3f4a98f3c371434 diff --git a/eng/Versions.props b/eng/Versions.props index 317bd775b15e..dab3db5f857c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -117,7 +117,7 @@ - 8.3.631204 + 8.3.657409 From 2e42162a5e17cfa090270077ed31101a6d8babf3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 25 Nov 2025 19:25:20 +0000 Subject: [PATCH 262/392] [release/8.0.1xx] Update dependencies from dotnet/format (#51902) [release/8.0.1xx] Update dependencies from dotnet/format --- NuGet.config | 6 +----- eng/Version.Details.xml | 4 ++-- eng/Versions.props | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index c0399219d4fa..fd12114faa5c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -5,11 +5,7 @@ - - - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a285fa45b0cf..fe2234f040cc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -77,9 +77,9 @@ fc5e9eda234e2b69aa479f4f83faddc31fdd4da7 - + https://github.com/dotnet/format - a9a546ec24f105c72492bee017fec902ee99dc3e + a8be5ff9c558f921f565c461dd7688905f84742a diff --git a/eng/Versions.props b/eng/Versions.props index 323359c1f544..aa57aa71501e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -114,7 +114,7 @@ - 8.1.631205 + 8.1.657407 From 3e4a17257b5afafaedee54f26a7a9287bf7ae453 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 25 Nov 2025 19:39:33 +0000 Subject: [PATCH 263/392] [release/8.0.4xx] Update dependencies from dotnet/roslyn (#51833) [release/8.0.4xx] Update dependencies from dotnet/roslyn --- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 14 +++++++------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 40f327510be5..694acfdf7631 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -82,34 +82,34 @@ b7d483d5a0ce4e96a3468514f3f4a98f3c371434 - + https://github.com/dotnet/roslyn - bc1c3011064a493b0ca527df6fb7215e2e5cfa96 + 3fb752d448006a3144a60ccf181d745e555422f9 - + https://github.com/dotnet/roslyn - bc1c3011064a493b0ca527df6fb7215e2e5cfa96 + 3fb752d448006a3144a60ccf181d745e555422f9 - + https://github.com/dotnet/roslyn - bc1c3011064a493b0ca527df6fb7215e2e5cfa96 + 3fb752d448006a3144a60ccf181d745e555422f9 - + https://github.com/dotnet/roslyn - bc1c3011064a493b0ca527df6fb7215e2e5cfa96 + 3fb752d448006a3144a60ccf181d745e555422f9 - + https://github.com/dotnet/roslyn - bc1c3011064a493b0ca527df6fb7215e2e5cfa96 + 3fb752d448006a3144a60ccf181d745e555422f9 - + https://github.com/dotnet/roslyn - bc1c3011064a493b0ca527df6fb7215e2e5cfa96 + 3fb752d448006a3144a60ccf181d745e555422f9 - + https://github.com/dotnet/roslyn - bc1c3011064a493b0ca527df6fb7215e2e5cfa96 + 3fb752d448006a3144a60ccf181d745e555422f9 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index dab3db5f857c..9b2d5db47475 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -160,13 +160,13 @@ - 4.11.0-3.24554.2 - 4.11.0-3.24554.2 - 4.11.0-3.24554.2 - 4.11.0-3.24554.2 - 4.11.0-3.24554.2 - 4.11.0-3.24554.2 - 4.11.0-3.24554.2 + 4.11.0-3.25569.22 + 4.11.0-3.25569.22 + 4.11.0-3.25569.22 + 4.11.0-3.25569.22 + 4.11.0-3.25569.22 + 4.11.0-3.25569.22 + 4.11.0-3.25569.22 $(MicrosoftNetCompilersToolsetPackageVersion) From fff951b8b4888681651cb99727724a294c87a8de Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 25 Nov 2025 19:39:34 +0000 Subject: [PATCH 264/392] [release/8.0.1xx] Update dependencies from dotnet/roslyn (#51830) [release/8.0.1xx] Update dependencies from dotnet/roslyn --- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 14 +++++++------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fe2234f040cc..5cf88c3a28fa 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -82,34 +82,34 @@ a8be5ff9c558f921f565c461dd7688905f84742a - + https://github.com/dotnet/roslyn - a77b6e41d030878096fa496e00e4c0dffe5af9f0 + 38896ab4e7cee896fcde8a4e26914a777c794e3b - + https://github.com/dotnet/roslyn - a77b6e41d030878096fa496e00e4c0dffe5af9f0 + 38896ab4e7cee896fcde8a4e26914a777c794e3b - + https://github.com/dotnet/roslyn - a77b6e41d030878096fa496e00e4c0dffe5af9f0 + 38896ab4e7cee896fcde8a4e26914a777c794e3b - + https://github.com/dotnet/roslyn - a77b6e41d030878096fa496e00e4c0dffe5af9f0 + 38896ab4e7cee896fcde8a4e26914a777c794e3b - + https://github.com/dotnet/roslyn - a77b6e41d030878096fa496e00e4c0dffe5af9f0 + 38896ab4e7cee896fcde8a4e26914a777c794e3b - + https://github.com/dotnet/roslyn - a77b6e41d030878096fa496e00e4c0dffe5af9f0 + 38896ab4e7cee896fcde8a4e26914a777c794e3b - + https://github.com/dotnet/roslyn - a77b6e41d030878096fa496e00e4c0dffe5af9f0 + 38896ab4e7cee896fcde8a4e26914a777c794e3b https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index aa57aa71501e..a726a2acdb45 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -159,13 +159,13 @@ - 4.8.0-7.25056.18 - 4.8.0-7.25056.18 - 4.8.0-7.25056.18 - 4.8.0-7.25056.18 - 4.8.0-7.25056.18 - 4.8.0-7.25056.18 - 4.8.0-7.25056.18 + 4.8.0-7.25569.25 + 4.8.0-7.25569.25 + 4.8.0-7.25569.25 + 4.8.0-7.25569.25 + 4.8.0-7.25569.25 + 4.8.0-7.25569.25 + 4.8.0-7.25569.25 $(MicrosoftNetCompilersToolsetPackageVersion) From efa3f5902f859202a80a6c69ae10c63a6f7a4c24 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 25 Nov 2025 21:00:29 +0000 Subject: [PATCH 265/392] [release/8.0.3xx] Update dependencies from dotnet/format (#51901) [release/8.0.3xx] Update dependencies from dotnet/format - Merge branch 'release/8.0.3xx' into darc-release/8.0.3xx-ae2e8a3c-d110-4769-b5dc-4976b5fa4cb4 --- NuGet.config | 6 +----- eng/Version.Details.xml | 4 ++-- eng/Versions.props | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 92c94bc83918..d8bec6276c8b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -7,11 +7,7 @@ - - - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2079f8180840..a17ba4a296d5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -77,9 +77,9 @@ 80c165644db640d0f309affe0daa281c7e17b939 - + https://github.com/dotnet/format - c7e5d39bdc5e4a2fedd4fb4f46e35a9843ddff4a + 9861dd6937c3ec50fc3dec1d6ff296be88aacdb0 diff --git a/eng/Versions.props b/eng/Versions.props index e4d9b1c36e6e..fd3bd48b1bfd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -116,7 +116,7 @@ - 8.3.631206 + 8.3.657408 From e42b531c99ec1422b2e2b40ba9ffd29933c09d20 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 15 Nov 2025 02:03:49 +0000 Subject: [PATCH 266/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20251114.4 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25522.3 -> To Version 8.0.0-alpha.1.25564.4 --- eng/Version.Details.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a17ba4a296d5..b78436d90feb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - 449148366d9105de8a6470ebc4ba198926e9a30a + 1bffa52c9f78c19618fa929eea4916b0c6d27403 From eeb456b7a092a1b41f121e90a427b6e39c2e259d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 15 Nov 2025 02:04:27 +0000 Subject: [PATCH 267/392] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20251114.4 On relative base path root Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 8.0.0-alpha.1.25522.3 -> To Version 8.0.0-alpha.1.25564.4 --- eng/Version.Details.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 694acfdf7631..cf29b5976fc7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -354,9 +354,9 @@ 16bcad1c13be082bd52ce178896d1119a73081a9 - + https://github.com/dotnet/source-build-reference-packages - 449148366d9105de8a6470ebc4ba198926e9a30a + 1bffa52c9f78c19618fa929eea4916b0c6d27403 From 293f2d3cfe08ce96cd70329b6a6450a0f26628cc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 15 Nov 2025 02:04:25 +0000 Subject: [PATCH 268/392] Update dependencies from https://github.com/dotnet/arcade build 20251113.4 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25562.3 -> To Version 8.0.0-beta.25563.4 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a17ba4a296d5..812d65fa3eb5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - e8483fe03c7d3257c68f6013441da5d72eeb8392 + 952abb7faea30d565b847d31411d019904a613a0 - + https://github.com/dotnet/arcade - e8483fe03c7d3257c68f6013441da5d72eeb8392 + 952abb7faea30d565b847d31411d019904a613a0 - + https://github.com/dotnet/arcade - e8483fe03c7d3257c68f6013441da5d72eeb8392 + 952abb7faea30d565b847d31411d019904a613a0 - + https://github.com/dotnet/arcade - e8483fe03c7d3257c68f6013441da5d72eeb8392 + 952abb7faea30d565b847d31411d019904a613a0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index fd3bd48b1bfd..0b0356fff6d4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -35,7 +35,7 @@ 8.0.0 4.0.0 8.0.1 - 8.0.0-beta.25562.3 + 8.0.0-beta.25563.4 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -212,7 +212,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25562.3 + 8.0.0-beta.25563.4 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 1717b19c18fe..1f47b9c7583a 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25562.3", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25562.3" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25563.4", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25563.4" } } From 9ad7d816397c55ca97598a57fade13dea97d2dfa Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 21 Nov 2025 02:02:10 +0000 Subject: [PATCH 269/392] Update dependencies from https://github.com/dotnet/arcade build 20251120.4 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25562.3 -> To Version 8.0.0-beta.25570.4 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- .../templates-official/job/source-build.yml | 2 +- global.json | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 812d65fa3eb5..8c65374b198a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 952abb7faea30d565b847d31411d019904a613a0 + b03a7214ed5a36d5267894adf9f8f55067962fdb - + https://github.com/dotnet/arcade - 952abb7faea30d565b847d31411d019904a613a0 + b03a7214ed5a36d5267894adf9f8f55067962fdb - + https://github.com/dotnet/arcade - 952abb7faea30d565b847d31411d019904a613a0 + b03a7214ed5a36d5267894adf9f8f55067962fdb - + https://github.com/dotnet/arcade - 952abb7faea30d565b847d31411d019904a613a0 + b03a7214ed5a36d5267894adf9f8f55067962fdb https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 0b0356fff6d4..2b6b06463750 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -35,7 +35,7 @@ 8.0.0 4.0.0 8.0.1 - 8.0.0-beta.25563.4 + 8.0.0-beta.25570.4 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -212,7 +212,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25563.4 + 8.0.0-beta.25570.4 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/templates-official/job/source-build.yml b/eng/common/templates-official/job/source-build.yml index 7b9c58a90c5e..f75400757d1e 100644 --- a/eng/common/templates-official/job/source-build.yml +++ b/eng/common/templates-official/job/source-build.yml @@ -61,7 +61,7 @@ jobs: ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore1ESPool-Svc-Internal'), False, 'NetCore1ESPool-Internal')] - image: 1es-mariner-2 + image: 1es-azurelinux-3 os: linux ${{ if ne(parameters.platform.pool, '') }}: diff --git a/global.json b/global.json index 1f47b9c7583a..fd1b6223144e 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25563.4", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25563.4" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25570.4", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25570.4" } } From 7aaad7b7bb95eeb81b811d4085b251baa7d91cb3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 22 Nov 2025 02:02:02 +0000 Subject: [PATCH 270/392] Update dependencies from https://github.com/dotnet/arcade build 20251121.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25562.3 -> To Version 8.0.0-beta.25571.1 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8c65374b198a..ab09e4544cea 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - b03a7214ed5a36d5267894adf9f8f55067962fdb + be61e5dbdc68d586c5a479486c2342f0f4161c38 - + https://github.com/dotnet/arcade - b03a7214ed5a36d5267894adf9f8f55067962fdb + be61e5dbdc68d586c5a479486c2342f0f4161c38 - + https://github.com/dotnet/arcade - b03a7214ed5a36d5267894adf9f8f55067962fdb + be61e5dbdc68d586c5a479486c2342f0f4161c38 - + https://github.com/dotnet/arcade - b03a7214ed5a36d5267894adf9f8f55067962fdb + be61e5dbdc68d586c5a479486c2342f0f4161c38 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 2b6b06463750..5ad765bc0f65 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -35,7 +35,7 @@ 8.0.0 4.0.0 8.0.1 - 8.0.0-beta.25570.4 + 8.0.0-beta.25571.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -212,7 +212,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25570.4 + 8.0.0-beta.25571.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index fd1b6223144e..80521423c003 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25570.4", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25570.4" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25571.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25571.1" } } From 93bfe22b599839feca9b35d65667799302dab87f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 25 Nov 2025 02:02:42 +0000 Subject: [PATCH 271/392] Update dependencies from https://github.com/dotnet/arcade build 20251124.4 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25562.3 -> To Version 8.0.0-beta.25574.4 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ab09e4544cea..944c94452c91 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - be61e5dbdc68d586c5a479486c2342f0f4161c38 + f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 - + https://github.com/dotnet/arcade - be61e5dbdc68d586c5a479486c2342f0f4161c38 + f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 - + https://github.com/dotnet/arcade - be61e5dbdc68d586c5a479486c2342f0f4161c38 + f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 - + https://github.com/dotnet/arcade - be61e5dbdc68d586c5a479486c2342f0f4161c38 + f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 5ad765bc0f65..5fc72f7e8399 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -35,7 +35,7 @@ 8.0.0 4.0.0 8.0.1 - 8.0.0-beta.25571.1 + 8.0.0-beta.25574.4 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -212,7 +212,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25571.1 + 8.0.0-beta.25574.4 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 80521423c003..8b61223b70e6 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25571.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25571.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25574.4", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25574.4" } } From 07d0f5f1bfd3b96eb2132105f75c82229648ef9b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 18 Nov 2025 02:02:36 +0000 Subject: [PATCH 272/392] Update dependencies from https://github.com/dotnet/templating build 20251116.7 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.417-servicing.25563.1 -> To Version 8.0.417-servicing.25566.7 Microsoft.TemplateEngine.Abstractions From Version 8.0.417 -> To Version 8.0.417 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index b304a673831d..06447aaa9df3 100644 --- a/NuGet.config +++ b/NuGet.config @@ -17,7 +17,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3f30f3c2b382..9948c4c32809 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 98f9e6489e60d738e2bc75dd9e2d409dd3b56821 + 275148b9cc649a1b68cf53450b678672c8dfed4f - + https://github.com/dotnet/templating - 98f9e6489e60d738e2bc75dd9e2d409dd3b56821 + 275148b9cc649a1b68cf53450b678672c8dfed4f - + https://github.com/dotnet/templating - 98f9e6489e60d738e2bc75dd9e2d409dd3b56821 + 275148b9cc649a1b68cf53450b678672c8dfed4f diff --git a/eng/Versions.props b/eng/Versions.props index e56ac74d7e1c..dec4e96413a1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -149,7 +149,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.417-servicing.25563.1 + 8.0.417-servicing.25566.7 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From c2b4fc3dd6a45ad49ff780221db1c3a64d4d8dad Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 21 Nov 2025 02:02:07 +0000 Subject: [PATCH 273/392] Update dependencies from https://github.com/dotnet/arcade build 20251120.4 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25563.4 -> To Version 8.0.0-beta.25570.4 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- .../templates-official/job/source-build.yml | 2 +- eng/common/tools.ps1 | 16 +++++----------- global.json | 4 ++-- 5 files changed, 18 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5cf88c3a28fa..933708eb706e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - 952abb7faea30d565b847d31411d019904a613a0 + b03a7214ed5a36d5267894adf9f8f55067962fdb - + https://github.com/dotnet/arcade - 952abb7faea30d565b847d31411d019904a613a0 + b03a7214ed5a36d5267894adf9f8f55067962fdb - + https://github.com/dotnet/arcade - 952abb7faea30d565b847d31411d019904a613a0 + b03a7214ed5a36d5267894adf9f8f55067962fdb - + https://github.com/dotnet/arcade - 952abb7faea30d565b847d31411d019904a613a0 + b03a7214ed5a36d5267894adf9f8f55067962fdb https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index a726a2acdb45..f867e94c76ae 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25563.4 + 8.0.0-beta.25570.4 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -214,7 +214,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25563.4 + 8.0.0-beta.25570.4 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/templates-official/job/source-build.yml b/eng/common/templates-official/job/source-build.yml index 7b9c58a90c5e..f75400757d1e 100644 --- a/eng/common/templates-official/job/source-build.yml +++ b/eng/common/templates-official/job/source-build.yml @@ -61,7 +61,7 @@ jobs: ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore1ESPool-Svc-Internal'), False, 'NetCore1ESPool-Internal')] - image: 1es-mariner-2 + image: 1es-azurelinux-3 os: linux ${{ if ne(parameters.platform.pool, '') }}: diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 6764bdedbf05..bb048ad125a8 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -296,7 +296,7 @@ function InstallDotNet([string] $dotnetRoot, if ($runtime -eq "aspnetcore") { $runtimePath = $runtimePath + "\Microsoft.AspNetCore.App" } if ($runtime -eq "windowsdesktop") { $runtimePath = $runtimePath + "\Microsoft.WindowsDesktop.App" } $runtimePath = $runtimePath + "\" + $version - + $dotnetVersionLabel = "runtime toolset '$runtime/$architecture v$version'" if (Test-Path $runtimePath) { @@ -545,25 +545,19 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { - if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { - $vsRequirements = $GlobalJson.tools.vs - } else { - $vsRequirements = $null - } - } + if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'version') { $args += '-version' $args += $vsRequirements.version } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'components') { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component @@ -960,4 +954,4 @@ function Enable-Nuget-EnhancedRetry() { Write-PipelineSetVariable -Name 'NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000' Write-PipelineSetVariable -Name 'NUGET_RETRY_HTTP_429' -Value 'true' } -} \ No newline at end of file +} diff --git a/global.json b/global.json index 1f47b9c7583a..fd1b6223144e 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25563.4", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25563.4" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25570.4", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25570.4" } } From 0a0c197b031b877188f6dd1f15ee5d32e0fbd0aa Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 22 Nov 2025 02:01:57 +0000 Subject: [PATCH 274/392] Update dependencies from https://github.com/dotnet/arcade build 20251121.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25563.4 -> To Version 8.0.0-beta.25571.1 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 933708eb706e..d430153baf4e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - b03a7214ed5a36d5267894adf9f8f55067962fdb + be61e5dbdc68d586c5a479486c2342f0f4161c38 - + https://github.com/dotnet/arcade - b03a7214ed5a36d5267894adf9f8f55067962fdb + be61e5dbdc68d586c5a479486c2342f0f4161c38 - + https://github.com/dotnet/arcade - b03a7214ed5a36d5267894adf9f8f55067962fdb + be61e5dbdc68d586c5a479486c2342f0f4161c38 - + https://github.com/dotnet/arcade - b03a7214ed5a36d5267894adf9f8f55067962fdb + be61e5dbdc68d586c5a479486c2342f0f4161c38 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index f867e94c76ae..384a5a721330 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25570.4 + 8.0.0-beta.25571.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -214,7 +214,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25570.4 + 8.0.0-beta.25571.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index fd1b6223144e..80521423c003 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25570.4", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25570.4" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25571.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25571.1" } } From a0bfd348f1486353697636092a3bc39250ea6af2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 25 Nov 2025 02:02:19 +0000 Subject: [PATCH 275/392] Update dependencies from https://github.com/dotnet/arcade build 20251124.4 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25563.4 -> To Version 8.0.0-beta.25574.4 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- global.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d430153baf4e..d3d616918a6a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - be61e5dbdc68d586c5a479486c2342f0f4161c38 + f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 - + https://github.com/dotnet/arcade - be61e5dbdc68d586c5a479486c2342f0f4161c38 + f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 - + https://github.com/dotnet/arcade - be61e5dbdc68d586c5a479486c2342f0f4161c38 + f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 - + https://github.com/dotnet/arcade - be61e5dbdc68d586c5a479486c2342f0f4161c38 + f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 384a5a721330..f2b873d80b89 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25571.1 + 8.0.0-beta.25574.4 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -214,7 +214,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25571.1 + 8.0.0-beta.25574.4 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/global.json b/global.json index 80521423c003..8b61223b70e6 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25571.1", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25571.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25574.4", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25574.4" } } From 118e959dcda141f0b70b203cbb9f10d0bc7ba41e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 25 Nov 2025 22:22:52 +0000 Subject: [PATCH 276/392] [release/8.0.3xx] Update dependencies from dotnet/roslyn (#51832) [release/8.0.3xx] Update dependencies from dotnet/roslyn --- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 14 +++++++------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a17ba4a296d5..c2ec6e936d07 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -82,34 +82,34 @@ 9861dd6937c3ec50fc3dec1d6ff296be88aacdb0 - + https://github.com/dotnet/roslyn - 85262f5f51be12867c1c2776d7a2be55251c04be + c17a5134939f0e3ba9fa9b1649f6d9a0a161b9f5 - + https://github.com/dotnet/roslyn - 85262f5f51be12867c1c2776d7a2be55251c04be + c17a5134939f0e3ba9fa9b1649f6d9a0a161b9f5 - + https://github.com/dotnet/roslyn - 85262f5f51be12867c1c2776d7a2be55251c04be + c17a5134939f0e3ba9fa9b1649f6d9a0a161b9f5 - + https://github.com/dotnet/roslyn - 85262f5f51be12867c1c2776d7a2be55251c04be + c17a5134939f0e3ba9fa9b1649f6d9a0a161b9f5 - + https://github.com/dotnet/roslyn - 85262f5f51be12867c1c2776d7a2be55251c04be + c17a5134939f0e3ba9fa9b1649f6d9a0a161b9f5 - + https://github.com/dotnet/roslyn - 85262f5f51be12867c1c2776d7a2be55251c04be + c17a5134939f0e3ba9fa9b1649f6d9a0a161b9f5 - + https://github.com/dotnet/roslyn - 85262f5f51be12867c1c2776d7a2be55251c04be + c17a5134939f0e3ba9fa9b1649f6d9a0a161b9f5 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index fd3bd48b1bfd..6f9ddd8de820 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -157,13 +157,13 @@ - 4.10.0-3.25064.8 - 4.10.0-3.25064.8 - 4.10.0-3.25064.8 - 4.10.0-3.25064.8 - 4.10.0-3.25064.8 - 4.10.0-3.25064.8 - 4.10.0-3.25064.8 + 4.10.0-3.25569.16 + 4.10.0-3.25569.16 + 4.10.0-3.25569.16 + 4.10.0-3.25569.16 + 4.10.0-3.25569.16 + 4.10.0-3.25569.16 + 4.10.0-3.25569.16 $(MicrosoftNetCompilersToolsetPackageVersion) From 80278163f075192d312f4f8181e9ff215219c194 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 26 Nov 2025 02:03:35 +0000 Subject: [PATCH 277/392] Update dependencies from https://github.com/microsoft/testfx build 20251125.3 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25575.3 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25575.3 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 60916a109381..9445db83a225 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -144,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25574.4 - 4.1.0-preview.25574.4 + 2.1.0-preview.25575.3 + 4.1.0-preview.25575.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5594a8e6ead4..b90f2895dad4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - b8711292de9c4fda0ec07e1ce694a3b74da5240c + 838c4cd634276a89dbfc88f5371d9000252b9299 - + https://github.com/microsoft/testfx - b8711292de9c4fda0ec07e1ce694a3b74da5240c + 838c4cd634276a89dbfc88f5371d9000252b9299 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 5d9dce97e8a53725af1a2e986029196098a1861a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 26 Nov 2025 04:06:18 +0000 Subject: [PATCH 278/392] [release/8.0.3xx] Update dependencies from dotnet/templating (#51729) [release/8.0.3xx] Update dependencies from dotnet/templating - Merge branch 'release/8.0.3xx' into darc-release/8.0.3xx-6684134f-318c-45ef-9e20-3f418723af0d --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index d8bec6276c8b..a6687d39e542 100644 --- a/NuGet.config +++ b/NuGet.config @@ -21,7 +21,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c2ec6e936d07..0b51f8fa22e1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - d3b5c6c0e06f7edd8f2187a230f1dfebed8e5592 + 71d44aae51c38b1ab1df8ef1a853dfff01b5a22d - + https://github.com/dotnet/templating - d3b5c6c0e06f7edd8f2187a230f1dfebed8e5592 + 71d44aae51c38b1ab1df8ef1a853dfff01b5a22d - + https://github.com/dotnet/templating - d3b5c6c0e06f7edd8f2187a230f1dfebed8e5592 + 71d44aae51c38b1ab1df8ef1a853dfff01b5a22d diff --git a/eng/Versions.props b/eng/Versions.props index 6f9ddd8de820..740ec92d0106 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -146,7 +146,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.320-servicing.25559.1 + 8.0.320-servicing.25566.6 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 13a344b333288381e20d6643af31d369b6884116 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 27 Nov 2025 02:01:51 +0000 Subject: [PATCH 279/392] Update dependencies from https://github.com/microsoft/testfx build 20251126.6 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25575.3 -> To Version 2.1.0-preview.25576.6 MSTest From Version 4.1.0-preview.25575.3 -> To Version 4.1.0-preview.25576.6 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 7ff95e1952be..840e433f7d47 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25575.3 - 4.1.0-preview.25575.3 + 2.1.0-preview.25576.6 + 4.1.0-preview.25576.6 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index eab622058868..a23693e5f291 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 9a7c556a0ae21ca493352b21bd297e00e8a5f26d - + https://github.com/microsoft/testfx - 838c4cd634276a89dbfc88f5371d9000252b9299 + cbf317663738a486fa8bd8313e7edfc77df857eb - + https://github.com/microsoft/testfx - 838c4cd634276a89dbfc88f5371d9000252b9299 + cbf317663738a486fa8bd8313e7edfc77df857eb https://github.com/dotnet/dotnet From 13cb1f4fd7b43b6dc093303a7d0d858ad317835b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 27 Nov 2025 02:02:27 +0000 Subject: [PATCH 280/392] Update dependencies from https://github.com/microsoft/testfx build 20251126.6 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25576.6 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25576.6 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 9445db83a225..3205a15d507b 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -144,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25575.3 - 4.1.0-preview.25575.3 + 2.1.0-preview.25576.6 + 4.1.0-preview.25576.6 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b90f2895dad4..c406c5fca678 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - 838c4cd634276a89dbfc88f5371d9000252b9299 + cbf317663738a486fa8bd8313e7edfc77df857eb - + https://github.com/microsoft/testfx - 838c4cd634276a89dbfc88f5371d9000252b9299 + cbf317663738a486fa8bd8313e7edfc77df857eb https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 35b711a8b9d1e76170684b1b38e85f490d0339e7 Mon Sep 17 00:00:00 2001 From: "Donna Chen (BEYONDSOFT CONSULTING INC)" Date: Thu, 27 Nov 2025 15:03:50 +0800 Subject: [PATCH 281/392] Update dependency versions --- eng/Version.Details.props | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 3205a15d507b..12dd4e86ed4b 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -10,15 +10,15 @@ This file should be imported by eng/Versions.props 18.1.0-preview-25568-105 18.1.0-preview-25568-105 7.1.0-preview.1.6905 - 5.3.0-1.25568.105 - 5.3.0-1.25568.105 - 5.3.0-1.25568.105 - 5.3.0-1.25568.105 - 5.3.0-1.25568.105 - 5.3.0-1.25568.105 + 5.3.0-2.25560.14 + 5.3.0-2.25560.14 + 5.3.0-2.25560.14 + 5.3.0-2.25560.14 + 5.3.0-2.25560.14 + 5.3.0-2.25560.14 10.0.0-preview.25568.105 - 5.3.0-1.25568.105 - 5.3.0-1.25568.105 + 5.3.0-2.25560.14 + 5.3.0-2.25560.14 10.0.0-beta.25568.105 10.0.0-beta.25568.105 10.0.0-beta.25568.105 @@ -28,8 +28,8 @@ This file should be imported by eng/Versions.props 10.0.0-beta.25568.105 10.0.0-beta.25568.105 15.0.200-servicing.25568.105 - 5.3.0-1.25568.105 - 5.3.0-1.25568.105 + 5.3.0-2.25560.14 + 5.3.0-2.25560.14 10.0.0-preview.7.25377.103 10.0.0-preview.25568.105 18.1.0-preview-25568-105 From dd73a64971decec37becb430f986952124fdede5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 28 Nov 2025 02:01:32 +0000 Subject: [PATCH 282/392] Update dependencies from https://github.com/dotnet/arcade build 20251127.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25574.4 -> To Version 8.0.0-beta.25577.1 --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- .../templates-official/steps/source-build.yml | 2 +- eng/common/templates/steps/source-build.yml | 2 +- global.json | 4 ++-- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d3d616918a6a..8c4db2215448 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 + 1be4bb105d0b2b0b9c9b36b8705eb6eb00250e42 - + https://github.com/dotnet/arcade - f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 + 1be4bb105d0b2b0b9c9b36b8705eb6eb00250e42 - + https://github.com/dotnet/arcade - f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 + 1be4bb105d0b2b0b9c9b36b8705eb6eb00250e42 - + https://github.com/dotnet/arcade - f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 + 1be4bb105d0b2b0b9c9b36b8705eb6eb00250e42 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index f2b873d80b89..893d31eb95b4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,7 +34,7 @@ 7.0.0 4.0.0 7.0.0 - 8.0.0-beta.25574.4 + 8.0.0-beta.25577.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -214,7 +214,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25574.4 + 8.0.0-beta.25577.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/templates-official/steps/source-build.yml b/eng/common/templates-official/steps/source-build.yml index b63043da4b9f..c307825c9122 100644 --- a/eng/common/templates-official/steps/source-build.yml +++ b/eng/common/templates-official/steps/source-build.yml @@ -47,7 +47,7 @@ steps: # in the default public locations. internalRuntimeDownloadArgs= if [ '$(dotnetbuilds-internal-container-read-token-base64)' != '$''(dotnetbuilds-internal-container-read-token-base64)' ]; then - internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://dotnetbuilds.blob.core.windows.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' + internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://ci.dot.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' fi buildConfig=Release diff --git a/eng/common/templates/steps/source-build.yml b/eng/common/templates/steps/source-build.yml index ae06b26ea373..d08a0e92caa4 100644 --- a/eng/common/templates/steps/source-build.yml +++ b/eng/common/templates/steps/source-build.yml @@ -47,7 +47,7 @@ steps: # in the default public locations. internalRuntimeDownloadArgs= if [ '$(dotnetbuilds-internal-container-read-token-base64)' != '$''(dotnetbuilds-internal-container-read-token-base64)' ]; then - internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://dotnetbuilds.blob.core.windows.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' + internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://ci.dot.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' fi buildConfig=Release diff --git a/global.json b/global.json index 8b61223b70e6..0d6140e41e91 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25574.4", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25574.4" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25577.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25577.1" } } From fdd85c0a07d3231c5c3262e3ba5df24398abe0e2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 28 Nov 2025 02:01:40 +0000 Subject: [PATCH 283/392] Update dependencies from https://github.com/dotnet/arcade build 20251127.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25574.4 -> To Version 8.0.0-beta.25577.1 --- NuGet.config | 8 -------- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- .../templates-official/steps/source-build.yml | 2 +- eng/common/templates/steps/source-build.yml | 2 +- eng/common/tools.ps1 | 12 +++--------- global.json | 4 ++-- 7 files changed, 17 insertions(+), 31 deletions(-) diff --git a/NuGet.config b/NuGet.config index a6687d39e542..2046e09eeafc 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,27 +4,22 @@ - - - - - @@ -51,7 +46,6 @@ - @@ -61,10 +55,8 @@ - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6ec18e3390d3..ce75fb0507cf 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 + 1be4bb105d0b2b0b9c9b36b8705eb6eb00250e42 - + https://github.com/dotnet/arcade - f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 + 1be4bb105d0b2b0b9c9b36b8705eb6eb00250e42 - + https://github.com/dotnet/arcade - f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 + 1be4bb105d0b2b0b9c9b36b8705eb6eb00250e42 - + https://github.com/dotnet/arcade - f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 + 1be4bb105d0b2b0b9c9b36b8705eb6eb00250e42 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 4af4e544d215..0c3990876716 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -35,7 +35,7 @@ 8.0.0 4.0.0 8.0.1 - 8.0.0-beta.25574.4 + 8.0.0-beta.25577.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -212,7 +212,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25574.4 + 8.0.0-beta.25577.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/templates-official/steps/source-build.yml b/eng/common/templates-official/steps/source-build.yml index b63043da4b9f..c307825c9122 100644 --- a/eng/common/templates-official/steps/source-build.yml +++ b/eng/common/templates-official/steps/source-build.yml @@ -47,7 +47,7 @@ steps: # in the default public locations. internalRuntimeDownloadArgs= if [ '$(dotnetbuilds-internal-container-read-token-base64)' != '$''(dotnetbuilds-internal-container-read-token-base64)' ]; then - internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://dotnetbuilds.blob.core.windows.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' + internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://ci.dot.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' fi buildConfig=Release diff --git a/eng/common/templates/steps/source-build.yml b/eng/common/templates/steps/source-build.yml index ae06b26ea373..d08a0e92caa4 100644 --- a/eng/common/templates/steps/source-build.yml +++ b/eng/common/templates/steps/source-build.yml @@ -47,7 +47,7 @@ steps: # in the default public locations. internalRuntimeDownloadArgs= if [ '$(dotnetbuilds-internal-container-read-token-base64)' != '$''(dotnetbuilds-internal-container-read-token-base64)' ]; then - internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://dotnetbuilds.blob.core.windows.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' + internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://ci.dot.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' fi buildConfig=Release diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 76e639598408..bb048ad125a8 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -545,25 +545,19 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { - if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { - $vsRequirements = $GlobalJson.tools.vs - } else { - $vsRequirements = $null - } - } + if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'version') { $args += '-version' $args += $vsRequirements.version } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'components') { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component diff --git a/global.json b/global.json index 8b61223b70e6..0d6140e41e91 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25574.4", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25574.4" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25577.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25577.1" } } From d3ab5fa65f76208eaf43fc37f6ec1cf79c1a0578 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 28 Nov 2025 02:01:50 +0000 Subject: [PATCH 284/392] Update dependencies from https://github.com/dotnet/arcade build 20251127.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25574.4 -> To Version 8.0.0-beta.25577.1 --- NuGet.config | 7 ------- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- .../templates-official/steps/source-build.yml | 2 +- eng/common/templates/steps/source-build.yml | 2 +- eng/common/tools.ps1 | 12 +++--------- global.json | 4 ++-- 7 files changed, 17 insertions(+), 30 deletions(-) diff --git a/NuGet.config b/NuGet.config index b54346af7739..06447aaa9df3 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,26 +4,22 @@ - - - - @@ -50,17 +46,14 @@ - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1ff52fa79eee..6a4405b83bc9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -491,22 +491,22 @@ - + https://github.com/dotnet/arcade - f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 + 1be4bb105d0b2b0b9c9b36b8705eb6eb00250e42 - + https://github.com/dotnet/arcade - f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 + 1be4bb105d0b2b0b9c9b36b8705eb6eb00250e42 - + https://github.com/dotnet/arcade - f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 + 1be4bb105d0b2b0b9c9b36b8705eb6eb00250e42 - + https://github.com/dotnet/arcade - f95859accbb8e8312e39c1dcd7d1639c4d2c0c51 + 1be4bb105d0b2b0b9c9b36b8705eb6eb00250e42 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index dec4e96413a1..74ec8ffed449 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ 8.0.0 4.0.0 8.0.0 - 8.0.0-beta.25574.4 + 8.0.0-beta.25577.1 7.0.0-preview.22423.2 8.0.0 4.3.0 @@ -215,7 +215,7 @@ 6.12.0 6.1.0 - 8.0.0-beta.25574.4 + 8.0.0-beta.25577.1 4.18.4 1.3.2 8.0.0-beta.23607.1 diff --git a/eng/common/templates-official/steps/source-build.yml b/eng/common/templates-official/steps/source-build.yml index b63043da4b9f..c307825c9122 100644 --- a/eng/common/templates-official/steps/source-build.yml +++ b/eng/common/templates-official/steps/source-build.yml @@ -47,7 +47,7 @@ steps: # in the default public locations. internalRuntimeDownloadArgs= if [ '$(dotnetbuilds-internal-container-read-token-base64)' != '$''(dotnetbuilds-internal-container-read-token-base64)' ]; then - internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://dotnetbuilds.blob.core.windows.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' + internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://ci.dot.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' fi buildConfig=Release diff --git a/eng/common/templates/steps/source-build.yml b/eng/common/templates/steps/source-build.yml index ae06b26ea373..d08a0e92caa4 100644 --- a/eng/common/templates/steps/source-build.yml +++ b/eng/common/templates/steps/source-build.yml @@ -47,7 +47,7 @@ steps: # in the default public locations. internalRuntimeDownloadArgs= if [ '$(dotnetbuilds-internal-container-read-token-base64)' != '$''(dotnetbuilds-internal-container-read-token-base64)' ]; then - internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://dotnetbuilds.blob.core.windows.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' + internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://ci.dot.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' fi buildConfig=Release diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 76e639598408..bb048ad125a8 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -545,25 +545,19 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { - if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { - $vsRequirements = $GlobalJson.tools.vs - } else { - $vsRequirements = $null - } - } + if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'version') { $args += '-version' $args += $vsRequirements.version } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'components') { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component diff --git a/global.json b/global.json index 8b61223b70e6..0d6140e41e91 100644 --- a/global.json +++ b/global.json @@ -14,7 +14,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25574.4", - "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25574.4" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25577.1", + "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25577.1" } } From 81a8aab75206afcc5863a7e1edf83e722a9491be Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 28 Nov 2025 02:02:01 +0000 Subject: [PATCH 285/392] Update dependencies from https://github.com/microsoft/testfx build 20251127.6 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25575.3 -> To Version 2.1.0-preview.25577.6 MSTest From Version 4.1.0-preview.25575.3 -> To Version 4.1.0-preview.25577.6 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index c051a149a55e..e0d4743a026b 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25576.6 - 4.1.0-preview.25576.6 + 2.1.0-preview.25577.6 + 4.1.0-preview.25577.6 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a4e4434b3aad..0b64035ee779 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 20abd87658f89b288b8beeb3a0fcb2c89b0af69a - + https://github.com/microsoft/testfx - cbf317663738a486fa8bd8313e7edfc77df857eb + fde0cfd0fa75eee5e0eb722cd363bd2d442611e4 - + https://github.com/microsoft/testfx - cbf317663738a486fa8bd8313e7edfc77df857eb + fde0cfd0fa75eee5e0eb722cd363bd2d442611e4 https://github.com/dotnet/dotnet From 2039a28f7576f4b7647cc0d4ff782b8a3b7659fe Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 28 Nov 2025 02:02:40 +0000 Subject: [PATCH 286/392] Update dependencies from https://github.com/microsoft/testfx build 20251127.6 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25577.6 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25577.6 --- eng/Version.Details.props | 24 ++++++++++++------------ eng/Version.Details.xml | 8 ++++---- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 12dd4e86ed4b..f41bf52a3b79 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -10,15 +10,15 @@ This file should be imported by eng/Versions.props 18.1.0-preview-25568-105 18.1.0-preview-25568-105 7.1.0-preview.1.6905 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 + 5.3.0-1.25568.105 + 5.3.0-1.25568.105 + 5.3.0-1.25568.105 + 5.3.0-1.25568.105 + 5.3.0-1.25568.105 + 5.3.0-1.25568.105 10.0.0-preview.25568.105 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 + 5.3.0-1.25568.105 + 5.3.0-1.25568.105 10.0.0-beta.25568.105 10.0.0-beta.25568.105 10.0.0-beta.25568.105 @@ -28,8 +28,8 @@ This file should be imported by eng/Versions.props 10.0.0-beta.25568.105 10.0.0-beta.25568.105 15.0.200-servicing.25568.105 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 + 5.3.0-1.25568.105 + 5.3.0-1.25568.105 10.0.0-preview.7.25377.103 10.0.0-preview.25568.105 18.1.0-preview-25568-105 @@ -144,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25576.6 - 4.1.0-preview.25576.6 + 2.1.0-preview.25577.6 + 4.1.0-preview.25577.6 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c406c5fca678..7613f1622f27 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - cbf317663738a486fa8bd8313e7edfc77df857eb + fde0cfd0fa75eee5e0eb722cd363bd2d442611e4 - + https://github.com/microsoft/testfx - cbf317663738a486fa8bd8313e7edfc77df857eb + fde0cfd0fa75eee5e0eb722cd363bd2d442611e4 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From e1d751cdb9908742518d7fbc4ffba1f08f7bb64e Mon Sep 17 00:00:00 2001 From: "Donna Chen (BEYONDSOFT CONSULTING INC)" Date: Fri, 28 Nov 2025 15:23:09 +0800 Subject: [PATCH 287/392] Restore darc-pub-DotNet-msbuild-Trusted --- NuGet.config | 1 + 1 file changed, 1 insertion(+) diff --git a/NuGet.config b/NuGet.config index 2046e09eeafc..8b3ddaadbbbc 100644 --- a/NuGet.config +++ b/NuGet.config @@ -11,6 +11,7 @@ + From 436139acaf12bce9f446f5339badbe33232b5855 Mon Sep 17 00:00:00 2001 From: "Donna Chen (BEYONDSOFT CONSULTING INC)" Date: Fri, 28 Nov 2025 17:00:12 +0800 Subject: [PATCH 288/392] Revert change to tools.ps1 --- eng/common/tools.ps1 | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index bb048ad125a8..d6118b41c79a 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -545,19 +545,25 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } + if (!$vsRequirements) { + if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { + $vsRequirements = $GlobalJson.tools.vs + } else { + $vsRequirements = $null + } + } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if (Get-Member -InputObject $vsRequirements -Name 'version') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { $args += '-version' $args += $vsRequirements.version } - if (Get-Member -InputObject $vsRequirements -Name 'components') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component @@ -954,4 +960,4 @@ function Enable-Nuget-EnhancedRetry() { Write-PipelineSetVariable -Name 'NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000' Write-PipelineSetVariable -Name 'NUGET_RETRY_HTTP_429' -Value 'true' } -} +} \ No newline at end of file From 656eeee59e63d500eaa5964e779bde554750ebc4 Mon Sep 17 00:00:00 2001 From: "Donna Chen (BEYONDSOFT CONSULTING INC)" Date: Fri, 28 Nov 2025 17:07:10 +0800 Subject: [PATCH 289/392] Revert change to tools.ps1 --- eng/common/tools.ps1 | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index bb048ad125a8..d6118b41c79a 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -545,19 +545,25 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } + if (!$vsRequirements) { + if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { + $vsRequirements = $GlobalJson.tools.vs + } else { + $vsRequirements = $null + } + } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if (Get-Member -InputObject $vsRequirements -Name 'version') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { $args += '-version' $args += $vsRequirements.version } - if (Get-Member -InputObject $vsRequirements -Name 'components') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component @@ -954,4 +960,4 @@ function Enable-Nuget-EnhancedRetry() { Write-PipelineSetVariable -Name 'NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000' Write-PipelineSetVariable -Name 'NUGET_RETRY_HTTP_429' -Value 'true' } -} +} \ No newline at end of file From 032c3a8bb53de012f15b3f0a4605c840690c4bc0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 29 Nov 2025 02:01:55 +0000 Subject: [PATCH 290/392] Update dependencies from https://github.com/microsoft/testfx build 20251128.9 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25575.3 -> To Version 2.1.0-preview.25578.9 MSTest From Version 4.1.0-preview.25575.3 -> To Version 4.1.0-preview.25578.9 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 9e2e4ad7447f..7314e4a6df53 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25577.6 - 4.1.0-preview.25577.6 + 2.1.0-preview.25578.9 + 4.1.0-preview.25578.9 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 57e22bbe4974..e19f0f3757a5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 9edc0b542303b8bd0ef56f47d3740b75b8678304 - + https://github.com/microsoft/testfx - fde0cfd0fa75eee5e0eb722cd363bd2d442611e4 + db335de3c4a4849d7b92a11f65affa1447d2547e - + https://github.com/microsoft/testfx - fde0cfd0fa75eee5e0eb722cd363bd2d442611e4 + db335de3c4a4849d7b92a11f65affa1447d2547e https://github.com/dotnet/dotnet From bfe854fbb1308ba872e3520cbadec31857c9a70e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 29 Nov 2025 02:02:44 +0000 Subject: [PATCH 291/392] Update dependencies from https://github.com/microsoft/testfx build 20251128.9 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25578.9 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25578.9 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index f41bf52a3b79..ad18a5ad4128 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -144,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25577.6 - 4.1.0-preview.25577.6 + 2.1.0-preview.25578.9 + 4.1.0-preview.25578.9 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7613f1622f27..0eb02a8471a5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - fde0cfd0fa75eee5e0eb722cd363bd2d442611e4 + db335de3c4a4849d7b92a11f65affa1447d2547e - + https://github.com/microsoft/testfx - fde0cfd0fa75eee5e0eb722cd363bd2d442611e4 + db335de3c4a4849d7b92a11f65affa1447d2547e https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 135332a7ee96a51cdc73d6d7abbe7e3780cbe75e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 30 Nov 2025 02:01:46 +0000 Subject: [PATCH 292/392] Update dependencies from https://github.com/microsoft/testfx build 20251128.12 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25575.3 -> To Version 2.1.0-preview.25578.12 MSTest From Version 4.1.0-preview.25575.3 -> To Version 4.1.0-preview.25578.12 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 7314e4a6df53..c36bbbf32001 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25578.9 - 4.1.0-preview.25578.9 + 2.1.0-preview.25578.12 + 4.1.0-preview.25578.12 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e19f0f3757a5..a092fa4498a3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 9edc0b542303b8bd0ef56f47d3740b75b8678304 - + https://github.com/microsoft/testfx - db335de3c4a4849d7b92a11f65affa1447d2547e + d1b07762ab2919dd396241597377eea853256403 - + https://github.com/microsoft/testfx - db335de3c4a4849d7b92a11f65affa1447d2547e + d1b07762ab2919dd396241597377eea853256403 https://github.com/dotnet/dotnet From f17b13a4cf3a53c14db81b3772ca56a210dd335a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 30 Nov 2025 02:01:56 +0000 Subject: [PATCH 293/392] Update dependencies from https://github.com/microsoft/testfx build 20251128.12 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25578.12 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25578.12 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index ad18a5ad4128..f461cbaa92c5 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -144,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25578.9 - 4.1.0-preview.25578.9 + 2.1.0-preview.25578.12 + 4.1.0-preview.25578.12 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0eb02a8471a5..b3c8bc6a6a2b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - db335de3c4a4849d7b92a11f65affa1447d2547e + d1b07762ab2919dd396241597377eea853256403 - + https://github.com/microsoft/testfx - db335de3c4a4849d7b92a11f65affa1447d2547e + d1b07762ab2919dd396241597377eea853256403 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 9e7da65101284eadc60c6c419e8fc98728c01689 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 2 Dec 2025 02:02:15 +0000 Subject: [PATCH 294/392] Update dependencies from https://github.com/microsoft/testfx build 20251201.5 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25575.3 -> To Version 2.1.0-preview.25601.5 MSTest From Version 4.1.0-preview.25575.3 -> To Version 4.1.0-preview.25601.5 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 6fa17dc4bc34..9cfbc993fc67 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25578.12 - 4.1.0-preview.25578.12 + 2.1.0-preview.25601.5 + 4.1.0-preview.25601.5 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6366f9bc532f..cb16dfa5ef6a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet ba5cda19aa70d59758a74b7d36c90e009b32f6f0 - + https://github.com/microsoft/testfx - d1b07762ab2919dd396241597377eea853256403 + e842ada208443f08ea35667b3a9b47d14a48a471 - + https://github.com/microsoft/testfx - d1b07762ab2919dd396241597377eea853256403 + e842ada208443f08ea35667b3a9b47d14a48a471 https://github.com/dotnet/dotnet From c72ec0ef4acdf280593c18c83d9b1a5bf181b530 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 2 Dec 2025 02:03:08 +0000 Subject: [PATCH 295/392] Update dependencies from https://github.com/microsoft/testfx build 20251201.5 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25601.5 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25601.5 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index f461cbaa92c5..3759f681e39b 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -144,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25578.12 - 4.1.0-preview.25578.12 + 2.1.0-preview.25601.5 + 4.1.0-preview.25601.5 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b3c8bc6a6a2b..2deff0146368 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - d1b07762ab2919dd396241597377eea853256403 + e842ada208443f08ea35667b3a9b47d14a48a471 - + https://github.com/microsoft/testfx - d1b07762ab2919dd396241597377eea853256403 + e842ada208443f08ea35667b3a9b47d14a48a471 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 975722d6ca549ac782317b7ef361709a455cb1b3 Mon Sep 17 00:00:00 2001 From: Ella Hathaway <67609881+ellahathaway@users.noreply.github.com> Date: Tue, 2 Dec 2025 11:40:37 -0700 Subject: [PATCH 296/392] Patch CoreCLR failure fix (#51956) --- ...ing-Add-flags-when-the-clang-s-major.patch | 145 ++++++++++++++++++ 1 file changed, 145 insertions(+) create mode 100644 src/SourceBuild/patches/runtime/0001-release-9.0-staging-Add-flags-when-the-clang-s-major.patch diff --git a/src/SourceBuild/patches/runtime/0001-release-9.0-staging-Add-flags-when-the-clang-s-major.patch b/src/SourceBuild/patches/runtime/0001-release-9.0-staging-Add-flags-when-the-clang-s-major.patch new file mode 100644 index 000000000000..395dea35c1ae --- /dev/null +++ b/src/SourceBuild/patches/runtime/0001-release-9.0-staging-Add-flags-when-the-clang-s-major.patch @@ -0,0 +1,145 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Aaron R Robinson +Date: Fri, 14 Nov 2025 11:01:28 -0800 +Subject: [PATCH] [release/9.0-staging] Add flags when the clang's major + version is > 20.0 (#121151) +Backport: https://github.com/dotnet/runtime/pull/121151 + +## Customer Impact + +- [x] Customer reported +- [ ] Found internally + +These issues were reported in +https://github.com/dotnet/runtime/issues/119706 as problems with +clang-21 on Fedora 43. The investigation uncovered that clang introduced +a potentially breaking change in clang-20 that we do not currently +consume. These build changes impact VMR related builds when linux +distrobutions performing source build adopt clang-21. + +clang-20 breaking change log - +https://releases.llvm.org/20.1.0/tools/clang/docs/ReleaseNotes.html#potentially-breaking-changes. + +This PR contains the minimal changes needed to fix issues from the +following PR https://github.com/dotnet/runtime/pull/120775. + +.NET 10: https://github.com/dotnet/runtime/pull/121124 +.NET 8: https://github.com/dotnet/runtime/pull/121150 + +## Regression + +- [ ] Yes +- [x] No + +Build with the new clang-21 compiler will cause the runtime to crash. + +## Testing + +This has been validated using various legs and examples to demonstrate +the usage of undefined behavior these flags convert into "defined" +behavior in C/C++. + +## Risk + +Low. This has zero impact on our production build since we specifically +target clang-18. This is only valid for those partners that are using +clang-20+. +--- + eng/native/configurecompiler.cmake | 18 +++++++++++++++--- + src/coreclr/debug/di/rspriv.h | 4 ++-- + src/coreclr/debug/di/rsthread.cpp | 12 ++++++------ + 3 files changed, 23 insertions(+), 11 deletions(-) + +diff --git a/eng/native/configurecompiler.cmake b/eng/native/configurecompiler.cmake +index 109b947e4eb..c114c03a9a1 100644 +--- a/eng/native/configurecompiler.cmake ++++ b/eng/native/configurecompiler.cmake +@@ -526,9 +526,21 @@ if (CLR_CMAKE_HOST_UNIX) + # Disable frame pointer optimizations so profilers can get better call stacks + add_compile_options(-fno-omit-frame-pointer) + +- # Make signed arithmetic overflow of addition, subtraction, and multiplication wrap around +- # using twos-complement representation (this is normally undefined according to the C++ spec). +- add_compile_options(-fwrapv) ++ if((CMAKE_C_COMPILER_ID STREQUAL "Clang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 20.0) OR ++ (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 20.0)) ++ # Make signed overflow well-defined. Implies the following flags in clang-20 and above. ++ # -fwrapv - Make signed arithmetic overflow of addition, subtraction, and multiplication wrap around ++ # using twos-complement representation (this is normally undefined according to the C++ spec). ++ # -fwrapv-pointer - The same as -fwrapv but for pointers. ++ add_compile_options(-fno-strict-overflow) ++ ++ # Suppress C++ strict aliasing rules. This matches our use of MSVC. ++ add_compile_options(-fno-strict-aliasing) ++ else() ++ # Make signed arithmetic overflow of addition, subtraction, and multiplication wrap around ++ # using twos-complement representation (this is normally undefined according to the C++ spec). ++ add_compile_options(-fwrapv) ++ endif() + + if(CLR_CMAKE_HOST_APPLE) + # Clang will by default emit objc_msgSend stubs in Xcode 14, which ld from earlier Xcodes doesn't understand. +diff --git a/src/coreclr/debug/di/rspriv.h b/src/coreclr/debug/di/rspriv.h +index 7e2b49b3170..119ca6f7c08 100644 +--- a/src/coreclr/debug/di/rspriv.h ++++ b/src/coreclr/debug/di/rspriv.h +@@ -6404,8 +6404,8 @@ private: + // Lazily initialized. + EXCEPTION_RECORD * m_pExceptionRecord; + +- static const CorDebugUserState kInvalidUserState = CorDebugUserState(-1); +- CorDebugUserState m_userState; // This is the current state of the ++ static const int kInvalidUserState = -1; ++ int m_userState; // This is the current state of the + // thread, at the time that the + // left side synchronized + +diff --git a/src/coreclr/debug/di/rsthread.cpp b/src/coreclr/debug/di/rsthread.cpp +index cd7f79867a5..8c4f3317eff 100644 +--- a/src/coreclr/debug/di/rsthread.cpp ++++ b/src/coreclr/debug/di/rsthread.cpp +@@ -783,7 +783,7 @@ CorDebugUserState CordbThread::GetUserState() + m_userState = pDAC->GetUserState(m_vmThreadToken); + } + +- return m_userState; ++ return (CorDebugUserState)m_userState; + } + + +@@ -887,7 +887,7 @@ HRESULT CordbThread::CreateStepper(ICorDebugStepper ** ppStepper) + //Returns true if current user state of a thread is USER_WAIT_SLEEP_JOIN + bool CordbThread::IsThreadWaitingOrSleeping() + { +- CorDebugUserState userState = m_userState; ++ int userState = m_userState; + if (userState == kInvalidUserState) + { + //If m_userState is not ready, we'll read from DAC only part of it which +@@ -3721,14 +3721,14 @@ HRESULT CordbUnmanagedThread::SetupFirstChanceHijackForSync() + LOG((LF_CORDB, LL_INFO10000, "CUT::SFCHFS: hijackCtx started as:\n")); + LogContext(GetHijackCtx()); + +- // Save the thread's full context for all platforms except for x86 because we need the ++ // Save the thread's full context for all platforms except for x86 because we need the + // DT_CONTEXT_EXTENDED_REGISTERS to avoid getting incomplete information and corrupt the thread context + DT_CONTEXT context; +-#ifdef TARGET_X86 ++#ifdef TARGET_X86 + context.ContextFlags = DT_CONTEXT_FULL | DT_CONTEXT_EXTENDED_REGISTERS; + #else + context.ContextFlags = DT_CONTEXT_FULL; +-#endif ++#endif + + BOOL succ = DbiGetThreadContext(m_handle, &context); + _ASSERTE(succ); +@@ -3739,7 +3739,7 @@ HRESULT CordbUnmanagedThread::SetupFirstChanceHijackForSync() + LOG((LF_CORDB, LL_ERROR, "CUT::SFCHFS: DbiGetThreadContext error=0x%x\n", error)); + } + +-#ifdef TARGET_X86 ++#ifdef TARGET_X86 + GetHijackCtx()->ContextFlags = DT_CONTEXT_FULL | DT_CONTEXT_EXTENDED_REGISTERS; + #else + GetHijackCtx()->ContextFlags = DT_CONTEXT_FULL; From 76cc8f284ba0d2892eb9c88653dd7a23e10e2f04 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 2 Dec 2025 22:58:33 +0000 Subject: [PATCH 297/392] Update dependencies from https://github.com/dotnet/templating build 20251202.3 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.123-servicing.25566.2 -> To Version 8.0.123-servicing.25602.3 Microsoft.TemplateEngine.Abstractions From Version 8.0.123 -> To Version 8.0.123 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index fd12114faa5c..220bbc493b99 100644 --- a/NuGet.config +++ b/NuGet.config @@ -17,7 +17,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8c4db2215448..acab3aaf6a08 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 60c0235b29a158b4ea57b440bfa498ebed6641ff + ca95ce39a1d1c189a275bb5e3b8c78434d2cca48 - + https://github.com/dotnet/templating - 60c0235b29a158b4ea57b440bfa498ebed6641ff + ca95ce39a1d1c189a275bb5e3b8c78434d2cca48 - + https://github.com/dotnet/templating - 60c0235b29a158b4ea57b440bfa498ebed6641ff + ca95ce39a1d1c189a275bb5e3b8c78434d2cca48 diff --git a/eng/Versions.props b/eng/Versions.props index 893d31eb95b4..8c4069c5a5a2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -148,7 +148,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.123-servicing.25566.2 + 8.0.123-servicing.25602.3 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 7ca7f41d1ecee3f7cbc7e6822431198306a7189a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 3 Dec 2025 02:01:21 +0000 Subject: [PATCH 298/392] Update dependencies from https://github.com/dotnet/templating build 20251202.4 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.417-servicing.25566.7 -> To Version 8.0.417-servicing.25602.4 Microsoft.TemplateEngine.Abstractions From Version 8.0.417 -> To Version 8.0.417 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index 06447aaa9df3..0c6d69805f98 100644 --- a/NuGet.config +++ b/NuGet.config @@ -17,7 +17,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6a4405b83bc9..d6549f66c42c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 275148b9cc649a1b68cf53450b678672c8dfed4f + 6ff5a2f7c0ba8f9582add5aa17aa5c62cbd36068 - + https://github.com/dotnet/templating - 275148b9cc649a1b68cf53450b678672c8dfed4f + 6ff5a2f7c0ba8f9582add5aa17aa5c62cbd36068 - + https://github.com/dotnet/templating - 275148b9cc649a1b68cf53450b678672c8dfed4f + 6ff5a2f7c0ba8f9582add5aa17aa5c62cbd36068 diff --git a/eng/Versions.props b/eng/Versions.props index 8c9eccd45f67..5ead1cdd4bfc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -149,7 +149,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.417-servicing.25566.7 + 8.0.417-servicing.25602.4 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From a9ac3a1c11b73ed305fa2ffd612e39f59fad29be Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 3 Dec 2025 02:01:22 +0000 Subject: [PATCH 299/392] Update dependencies from https://github.com/microsoft/testfx build 20251202.3 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25575.3 -> To Version 2.1.0-preview.25602.3 MSTest From Version 4.1.0-preview.25575.3 -> To Version 4.1.0-preview.25602.3 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 82a3a230d86a..c07f9edf8760 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25601.5 - 4.1.0-preview.25601.5 + 2.1.0-preview.25602.3 + 4.1.0-preview.25602.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 237b52637b72..aa3d0836ae5e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet f2d1a92c2429848e41e78af560381a597f933090 - + https://github.com/microsoft/testfx - e842ada208443f08ea35667b3a9b47d14a48a471 + bab3be62cae0fb98fa0f36365cba10280a19e34f - + https://github.com/microsoft/testfx - e842ada208443f08ea35667b3a9b47d14a48a471 + bab3be62cae0fb98fa0f36365cba10280a19e34f https://github.com/dotnet/dotnet From 868de171fecc2fd9cddf0d780769535be0839817 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 3 Dec 2025 02:02:05 +0000 Subject: [PATCH 300/392] Update dependencies from https://github.com/microsoft/testfx build 20251202.3 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25602.3 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25602.3 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 3759f681e39b..25368bf7d078 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -144,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25601.5 - 4.1.0-preview.25601.5 + 2.1.0-preview.25602.3 + 4.1.0-preview.25602.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2deff0146368..ae8a0603bf15 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - e842ada208443f08ea35667b3a9b47d14a48a471 + bab3be62cae0fb98fa0f36365cba10280a19e34f - + https://github.com/microsoft/testfx - e842ada208443f08ea35667b3a9b47d14a48a471 + bab3be62cae0fb98fa0f36365cba10280a19e34f https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 8ce75a2deee834ca18c78b3f7bd992b0c729a829 Mon Sep 17 00:00:00 2001 From: "Donna Chen (BEYONDSOFT CONSULTING INC)" Date: Wed, 3 Dec 2025 11:15:31 +0800 Subject: [PATCH 301/392] Restore fix for VS2022 rejecting preview SDKs in tools.ps1 --- eng/common/tools.ps1 | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index bb048ad125a8..6764bdedbf05 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -296,7 +296,7 @@ function InstallDotNet([string] $dotnetRoot, if ($runtime -eq "aspnetcore") { $runtimePath = $runtimePath + "\Microsoft.AspNetCore.App" } if ($runtime -eq "windowsdesktop") { $runtimePath = $runtimePath + "\Microsoft.WindowsDesktop.App" } $runtimePath = $runtimePath + "\" + $version - + $dotnetVersionLabel = "runtime toolset '$runtime/$architecture v$version'" if (Test-Path $runtimePath) { @@ -545,19 +545,25 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } + if (!$vsRequirements) { + if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { + $vsRequirements = $GlobalJson.tools.vs + } else { + $vsRequirements = $null + } + } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if (Get-Member -InputObject $vsRequirements -Name 'version') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { $args += '-version' $args += $vsRequirements.version } - if (Get-Member -InputObject $vsRequirements -Name 'components') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component @@ -954,4 +960,4 @@ function Enable-Nuget-EnhancedRetry() { Write-PipelineSetVariable -Name 'NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000' Write-PipelineSetVariable -Name 'NUGET_RETRY_HTTP_429' -Value 'true' } -} +} \ No newline at end of file From 170e73690a05263981248746e2edeaf01bb58ebe Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 3 Dec 2025 03:29:22 +0000 Subject: [PATCH 302/392] Update dependencies from https://github.com/dotnet/templating build 20251202.8 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 9.0.113-servicing.25562.8 -> To Version 9.0.113-servicing.25602.8 Microsoft.TemplateEngine.Abstractions From Version 9.0.113 -> To Version 9.0.113 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index c3f0b39b8fb1..e31e3b13ad69 100644 --- a/NuGet.config +++ b/NuGet.config @@ -35,7 +35,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9a47448c2b53..73150880a991 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,16 +3,16 @@ https://github.com/dotnet/templating - e784f3d6d4dc06ae806a254dd14b0979248aa83a + 9887f549bbf4a5eb3796e3d783826a3758b6b1a9 - + https://github.com/dotnet/templating - e784f3d6d4dc06ae806a254dd14b0979248aa83a + 9887f549bbf4a5eb3796e3d783826a3758b6b1a9 - + https://github.com/dotnet/templating - e784f3d6d4dc06ae806a254dd14b0979248aa83a + 9887f549bbf4a5eb3796e3d783826a3758b6b1a9 diff --git a/eng/Versions.props b/eng/Versions.props index 36b3ff89f882..21c8ce8c818d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -193,7 +193,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 9.0.113-servicing.25562.8 + 9.0.113-servicing.25602.8 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 3ebd50795238db690d7cdf4bc3e219efbcad4e4c Mon Sep 17 00:00:00 2001 From: Ella Hathaway <67609881+ellahathaway@users.noreply.github.com> Date: Wed, 3 Dec 2025 09:56:59 -0700 Subject: [PATCH 303/392] =?UTF-8?q?[release/9.0.1xx]=20Support=20shared=20?= =?UTF-8?q?.NET=20installation=20-=20baseline=20update,=E2=80=A6=20(#51908?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../eng/pipelines/templates/jobs/sdk-diff-tests.yml | 7 ++++++- .../templates/steps/create-baseline-update-pr.yml | 6 +++++- src/SourceBuild/content/eng/pipelines/vmr-license-scan.yml | 2 ++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/src/SourceBuild/content/eng/pipelines/templates/jobs/sdk-diff-tests.yml b/src/SourceBuild/content/eng/pipelines/templates/jobs/sdk-diff-tests.yml index abca04ac59c0..9bd63a32fe0f 100644 --- a/src/SourceBuild/content/eng/pipelines/templates/jobs/sdk-diff-tests.yml +++ b/src/SourceBuild/content/eng/pipelines/templates/jobs/sdk-diff-tests.yml @@ -106,15 +106,19 @@ jobs: eng/common/build.sh -bl --projects $(Build.SourcesDirectory)/test/Microsoft.DotNet.SourceBuild.SmokeTests/Microsoft.DotNet.SourceBuild.SmokeTests.csproj --restore + source ./eng/common/tools.sh + InitializeDotNetCli true + echo "##vso[task.setvariable variable=Platform]$platform" echo "##vso[task.setvariable variable=MsftSdkTarballPath]$(Pipeline.Workspace)/Artifacts/$msft_sdk_tarball_name" echo "##vso[task.setvariable variable=SdkTarballPath]$(Pipeline.Workspace)/Artifacts/$sdk_tarball_name" echo "##vso[task.setvariable variable=SourceBuiltArtifactsPath]$(Pipeline.Workspace)/Artifacts/$artifacts_path" + echo "##vso[task.setvariable variable=DotNetPath]$_InitializeDotNetCli" displayName: Prepare Tests workingDirectory: $(Build.SourcesDirectory) - script: > - .dotnet/dotnet test + $(DotNetPath)/dotnet test $(Build.SourcesDirectory)/test/Microsoft.DotNet.SourceBuild.SmokeTests/Microsoft.DotNet.SourceBuild.SmokeTests.csproj --filter "Category=SdkContent" --logger:'trx;LogFileName=$(Agent.JobName)_SDKDiffTests.trx' @@ -168,6 +172,7 @@ jobs: - ${{ if and(eq(parameters.publishTestResultsPr, 'true'), or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/release'))) }}: - template: ../steps/create-baseline-update-pr.yml parameters: + dotnetPath: $(DotNetPath) pipeline: sdk repo: dotnet/sdk originalFilesDirectory: src/SourceBuild/content/test/Microsoft.DotNet.SourceBuild.SmokeTests/assets diff --git a/src/SourceBuild/content/eng/pipelines/templates/steps/create-baseline-update-pr.yml b/src/SourceBuild/content/eng/pipelines/templates/steps/create-baseline-update-pr.yml index 442c59013d4c..0332a9fbc45b 100644 --- a/src/SourceBuild/content/eng/pipelines/templates/steps/create-baseline-update-pr.yml +++ b/src/SourceBuild/content/eng/pipelines/templates/steps/create-baseline-update-pr.yml @@ -1,4 +1,8 @@ parameters: +- name: dotnetPath + type: string + default: '$(Build.SourcesDirectory)/.dotnet' + # The pipeline that is being run # Used to determine the correct baseline update tool to run # Currently only supports "sdk" and "license" @@ -31,7 +35,7 @@ steps: branchName=$(echo "$(Build.SourceBranch)" | sed 's/refs\/heads\///g') - .dotnet/dotnet run \ + ${{ parameters.dotnetPath }}/dotnet run \ --project eng/tools/CreateBaselineUpdatePR/ \ --property:RestoreSources="$restoreSources" \ "${{ parameters.pipeline }}" \ diff --git a/src/SourceBuild/content/eng/pipelines/vmr-license-scan.yml b/src/SourceBuild/content/eng/pipelines/vmr-license-scan.yml index adec454e51ed..1eaaa7d2a07e 100644 --- a/src/SourceBuild/content/eng/pipelines/vmr-license-scan.yml +++ b/src/SourceBuild/content/eng/pipelines/vmr-license-scan.yml @@ -159,6 +159,7 @@ jobs: - script: | source ./eng/common/tools.sh InitializeDotNetCli true + echo "##vso[task.setvariable variable=DotNetPath]$_InitializeDotNetCli" displayName: Install .NET SDK workingDirectory: $(Build.SourcesDirectory) @@ -176,6 +177,7 @@ jobs: - template: templates/steps/create-baseline-update-pr.yml parameters: + dotnetPath: $(DotNetPath) pipeline: license repo: dotnet/sdk originalFilesDirectory: src/SourceBuild/content/test/Microsoft.DotNet.SourceBuild.SmokeTests/assets/LicenseScanTests From 72c77c3d72a2d6606057f79608912bc63c2e0db3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 4 Dec 2025 02:02:16 +0000 Subject: [PATCH 304/392] Update dependencies from https://github.com/dotnet/templating build 20251202.7 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.417-servicing.25602.4 -> To Version 8.0.417-servicing.25602.7 Microsoft.TemplateEngine.Abstractions From Version 8.0.417 -> To Version 8.0.417 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0c6d69805f98..d2b98ae83a68 100644 --- a/NuGet.config +++ b/NuGet.config @@ -17,7 +17,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d6549f66c42c..7873c1827704 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 6ff5a2f7c0ba8f9582add5aa17aa5c62cbd36068 + 0e52e7fcd03cf3bac61116830139162ed7038ab1 - + https://github.com/dotnet/templating - 6ff5a2f7c0ba8f9582add5aa17aa5c62cbd36068 + 0e52e7fcd03cf3bac61116830139162ed7038ab1 - + https://github.com/dotnet/templating - 6ff5a2f7c0ba8f9582add5aa17aa5c62cbd36068 + 0e52e7fcd03cf3bac61116830139162ed7038ab1 diff --git a/eng/Versions.props b/eng/Versions.props index 5ead1cdd4bfc..457f392b7944 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -149,7 +149,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.417-servicing.25602.4 + 8.0.417-servicing.25602.7 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 5d56e41276e0b095c4b11e00766e01184e8fb766 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 4 Dec 2025 02:03:11 +0000 Subject: [PATCH 305/392] Update dependencies from https://github.com/dotnet/arcade build 20251127.5 On relative base path root Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitExtensions From Version 9.0.0-beta.25562.4 -> To Version 9.0.0-beta.25577.5 --- eng/Version.Details.xml | 28 +++++++++---------- eng/Versions.props | 8 +++--- .../core-templates/job/source-build.yml | 2 +- .../core-templates/steps/source-build.yml | 2 +- eng/common/tools.ps1 | 14 +++------- global.json | 4 +-- 6 files changed, 26 insertions(+), 32 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 73150880a991..8e5b17496fc7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -589,34 +589,34 @@ - + https://github.com/dotnet/arcade - 6e2d8e204cebac7d3989c1996f96e5a9ed63fa80 + 0890ca08513391dafe556fb326c73c6c5c6cb329 - + https://github.com/dotnet/arcade - 6e2d8e204cebac7d3989c1996f96e5a9ed63fa80 + 0890ca08513391dafe556fb326c73c6c5c6cb329 - + https://github.com/dotnet/arcade - 6e2d8e204cebac7d3989c1996f96e5a9ed63fa80 + 0890ca08513391dafe556fb326c73c6c5c6cb329 - + https://github.com/dotnet/arcade - 6e2d8e204cebac7d3989c1996f96e5a9ed63fa80 + 0890ca08513391dafe556fb326c73c6c5c6cb329 - + https://github.com/dotnet/arcade - 6e2d8e204cebac7d3989c1996f96e5a9ed63fa80 + 0890ca08513391dafe556fb326c73c6c5c6cb329 - + https://github.com/dotnet/arcade - 6e2d8e204cebac7d3989c1996f96e5a9ed63fa80 + 0890ca08513391dafe556fb326c73c6c5c6cb329 - + https://github.com/dotnet/arcade - 6e2d8e204cebac7d3989c1996f96e5a9ed63fa80 + 0890ca08513391dafe556fb326c73c6c5c6cb329 diff --git a/eng/Versions.props b/eng/Versions.props index 21c8ce8c818d..f2ad6b488be5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -270,10 +270,10 @@ - 9.0.0-beta.25562.4 - 9.0.0-beta.25562.4 - 9.0.0-beta.25562.4 - 9.0.0-beta.25562.4 + 9.0.0-beta.25577.5 + 9.0.0-beta.25577.5 + 9.0.0-beta.25577.5 + 9.0.0-beta.25577.5 diff --git a/eng/common/core-templates/job/source-build.yml b/eng/common/core-templates/job/source-build.yml index 5baedac1e03d..1037ccedcb55 100644 --- a/eng/common/core-templates/job/source-build.yml +++ b/eng/common/core-templates/job/source-build.yml @@ -65,7 +65,7 @@ jobs: demands: ImageOverride -equals build.ubuntu.2004.amd64 ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore1ESPool-Svc-Internal'), False, 'NetCore1ESPool-Internal')] - image: 1es-mariner-2 + image: 1es-azurelinux-3 os: linux ${{ else }}: pool: diff --git a/eng/common/core-templates/steps/source-build.yml b/eng/common/core-templates/steps/source-build.yml index 0718e4ba902e..7846584d2a77 100644 --- a/eng/common/core-templates/steps/source-build.yml +++ b/eng/common/core-templates/steps/source-build.yml @@ -41,7 +41,7 @@ steps: # in the default public locations. internalRuntimeDownloadArgs= if [ '$(dotnetbuilds-internal-container-read-token-base64)' != '$''(dotnetbuilds-internal-container-read-token-base64)' ]; then - internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://dotnetbuilds.blob.core.windows.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' + internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://ci.dot.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' fi buildConfig=Release diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index b417781abc62..9b3ad8840fdb 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -547,25 +547,19 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { - if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { - $vsRequirements = $GlobalJson.tools.vs - } else { - $vsRequirements = $null - } - } + if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'version') { $args += '-version' $args += $vsRequirements.version } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'components') { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component @@ -968,4 +962,4 @@ function Enable-Nuget-EnhancedRetry() { Write-PipelineSetVariable -Name 'NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000' Write-PipelineSetVariable -Name 'NUGET_RETRY_HTTP_429' -Value 'true' } -} \ No newline at end of file +} diff --git a/global.json b/global.json index 4ca5e154bf1f..3ee42b57d57e 100644 --- a/global.json +++ b/global.json @@ -17,8 +17,8 @@ "cmake": "latest" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.25562.4", - "Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.25562.4", + "Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.25577.5", + "Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.25577.5", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.DotNet.CMake.Sdk": "9.0.0-beta.24217.1" } From 7e02450817c8e008208cd86a041d4d42e0d0ba0c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 4 Dec 2025 02:03:17 +0000 Subject: [PATCH 306/392] Update dependencies from https://github.com/microsoft/testfx build 20251203.1 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25575.3 -> To Version 2.1.0-preview.25603.1 MSTest From Version 4.1.0-preview.25575.3 -> To Version 4.1.0-preview.25603.1 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index cdcaa9faca33..888a10bb65ba 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25602.3 - 4.1.0-preview.25602.3 + 2.1.0-preview.25603.1 + 4.1.0-preview.25603.1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e55c4f2fc0ca..9b4d472c7b02 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 7dedd35363daf74f94a980da38f2cf4dc86cc23a - + https://github.com/microsoft/testfx - bab3be62cae0fb98fa0f36365cba10280a19e34f + a11abf7becb2795ce94216aadf8561c3f7c34497 - + https://github.com/microsoft/testfx - bab3be62cae0fb98fa0f36365cba10280a19e34f + a11abf7becb2795ce94216aadf8561c3f7c34497 https://github.com/dotnet/dotnet From cf5d2e8e4f500c212717f4dd2c2b1d3e6d87c711 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 4 Dec 2025 02:04:21 +0000 Subject: [PATCH 307/392] Update dependencies from https://github.com/microsoft/testfx build 20251203.1 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25603.1 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25603.1 --- eng/Version.Details.props | 6 ++---- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 804765280388..4ca14e66a397 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -89,8 +89,6 @@ This file should be imported by eng/Versions.props 2.2.0-beta.25523.111 10.0.0 10.0.0 - 10.0.2-servicing.25601.110 - 10.0.2-servicing.25601.110 10.0.0 10.0.0 10.0.0 @@ -146,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25602.3 - 4.1.0-preview.25602.3 + 2.1.0-preview.25603.1 + 4.1.0-preview.25603.1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ae8a0603bf15..bf2b91cf0bab 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - bab3be62cae0fb98fa0f36365cba10280a19e34f + a11abf7becb2795ce94216aadf8561c3f7c34497 - + https://github.com/microsoft/testfx - bab3be62cae0fb98fa0f36365cba10280a19e34f + a11abf7becb2795ce94216aadf8561c3f7c34497 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 99a108e5f185e990b7bfa5ee4aeb2517a1f2db99 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 4 Dec 2025 03:45:12 +0000 Subject: [PATCH 308/392] Update dependencies from https://github.com/dotnet/templating build 20251203.5 On relative base path root Microsoft.TemplateEngine.Abstractions From Version 9.0.309 -> To Version 9.0.309 Microsoft.TemplateEngine.Mocks From Version 9.0.309-servicing.25602.9 -> To Version 9.0.309-servicing.25603.5 --- NuGet.config | 2 +- eng/Version.Details.xml | 6 +++--- eng/Versions.props | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/NuGet.config b/NuGet.config index 361dfd340460..749a8aee1979 100644 --- a/NuGet.config +++ b/NuGet.config @@ -37,7 +37,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 18cab99acf63..2aeea34140a1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,11 +3,11 @@ https://github.com/dotnet/templating - a4a8aaf9939cd3fa68201c15dcab4ff60c35ffbb + 63c10ce5ef38119809e0b50c110c53c09589c4a3 - + https://github.com/dotnet/templating - a4a8aaf9939cd3fa68201c15dcab4ff60c35ffbb + 63c10ce5ef38119809e0b50c110c53c09589c4a3 diff --git a/eng/Versions.props b/eng/Versions.props index b6932a55c681..7e1e36da4c2e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -195,7 +195,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 9.0.309-servicing.25602.9 + 9.0.309-servicing.25603.5 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 53f83c3be83d34123e838d6c6cecafb6f7bfba8a Mon Sep 17 00:00:00 2001 From: "Donna Chen (BEYONDSOFT CONSULTING INC)" Date: Thu, 4 Dec 2025 14:32:41 +0800 Subject: [PATCH 309/392] Revert change to tools.ps1 --- eng/common/tools.ps1 | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 9b3ad8840fdb..b417781abc62 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -547,19 +547,25 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } + if (!$vsRequirements) { + if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { + $vsRequirements = $GlobalJson.tools.vs + } else { + $vsRequirements = $null + } + } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if (Get-Member -InputObject $vsRequirements -Name 'version') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { $args += '-version' $args += $vsRequirements.version } - if (Get-Member -InputObject $vsRequirements -Name 'components') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component @@ -962,4 +968,4 @@ function Enable-Nuget-EnhancedRetry() { Write-PipelineSetVariable -Name 'NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000' Write-PipelineSetVariable -Name 'NUGET_RETRY_HTTP_429' -Value 'true' } -} +} \ No newline at end of file From 31b8ca9cd5bf4f020aa49ea22683c8a4bdb7d518 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 4 Dec 2025 07:24:48 +0000 Subject: [PATCH 310/392] Update dependencies from https://github.com/dotnet/templating build 20251203.7 On relative base path root Microsoft.TemplateEngine.Abstractions From Version 9.0.309 -> To Version 9.0.309 Microsoft.TemplateEngine.Mocks From Version 9.0.309-servicing.25603.5 -> To Version 9.0.309-servicing.25603.7 --- NuGet.config | 2 +- eng/Version.Details.xml | 6 +++--- eng/Versions.props | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/NuGet.config b/NuGet.config index 749a8aee1979..5a77d97872a4 100644 --- a/NuGet.config +++ b/NuGet.config @@ -37,7 +37,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2aeea34140a1..d982d2a6f48e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,11 +3,11 @@ https://github.com/dotnet/templating - 63c10ce5ef38119809e0b50c110c53c09589c4a3 + ed9c11bb66049bbb817f2435ab07dc359d780f5f - + https://github.com/dotnet/templating - 63c10ce5ef38119809e0b50c110c53c09589c4a3 + ed9c11bb66049bbb817f2435ab07dc359d780f5f diff --git a/eng/Versions.props b/eng/Versions.props index 7e1e36da4c2e..d50b86454cd9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -195,7 +195,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 9.0.309-servicing.25603.5 + 9.0.309-servicing.25603.7 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 97a8ba4189ba013fbd66a9f34afd09dcf640022c Mon Sep 17 00:00:00 2001 From: Michael Yanni Date: Thu, 4 Dec 2025 15:34:12 -0800 Subject: [PATCH 311/392] Seeing if these are the missing version properties --- eng/Version.Details.props | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 4ca14e66a397..c0371405635e 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -89,6 +89,8 @@ This file should be imported by eng/Versions.props 2.2.0-beta.25523.111 10.0.0 10.0.0 + 10.0.0 + 10.0.0 10.0.0 10.0.0 10.0.0 From c7bf5391841a3fb7a7655001260b65dcbb5f8384 Mon Sep 17 00:00:00 2001 From: Michael Yanni Date: Thu, 4 Dec 2025 16:16:32 -0800 Subject: [PATCH 312/392] Skipping linux and mac for RunTestProjectWithCodeCoverage_ShouldReturnExitCodeGenericFailure. --- .../Test/GivenDotnetTestBuildsAndRunsTestsWithArtifacts.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/dotnet.Tests/CommandTests/Test/GivenDotnetTestBuildsAndRunsTestsWithArtifacts.cs b/test/dotnet.Tests/CommandTests/Test/GivenDotnetTestBuildsAndRunsTestsWithArtifacts.cs index 1677ca49276f..29f36acceac9 100644 --- a/test/dotnet.Tests/CommandTests/Test/GivenDotnetTestBuildsAndRunsTestsWithArtifacts.cs +++ b/test/dotnet.Tests/CommandTests/Test/GivenDotnetTestBuildsAndRunsTestsWithArtifacts.cs @@ -47,7 +47,8 @@ public void RunTestProjectWithFailingTestsAndFileArtifacts_ShouldReturnExitCodeG [InlineData(TestingConstants.Debug)] [InlineData(TestingConstants.Release)] - [Theory] + // Linux and macOS are being skipped. See: https://github.com/dotnet/sdk/issues/52029 + [WindowsOnlyTheory] public void RunTestProjectWithCodeCoverage_ShouldReturnExitCodeGenericFailure(string configuration) { TestAsset testInstance = _testAssetsManager.CopyTestAsset("TestProjectSolutionWithCodeCoverage", Guid.NewGuid().ToString()).WithSource(); From e3660388afe1262eb622d4644344263348a7c2e7 Mon Sep 17 00:00:00 2001 From: Michael Yanni Date: Thu, 4 Dec 2025 17:16:10 -0800 Subject: [PATCH 313/392] Update incorrect versions. --- eng/Version.Details.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index c0371405635e..6f7165809126 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -141,8 +141,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 + 5.3.0-1.25568.105 + 5.3.0-1.25568.105 2.0.0-preview.1.25527.1 From 58bbf02afc8fdfc836ab794ad101f34e8858b270 Mon Sep 17 00:00:00 2001 From: Michael Yanni Date: Thu, 4 Dec 2025 17:41:18 -0800 Subject: [PATCH 314/392] Using known working versions --- eng/Version.Details.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 6f7165809126..22c7672baf30 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -89,8 +89,8 @@ This file should be imported by eng/Versions.props 2.2.0-beta.25523.111 10.0.0 10.0.0 - 10.0.0 - 10.0.0 + 10.0.2-servicing.25601.110 + 10.0.2-servicing.25601.110 10.0.0 10.0.0 10.0.0 From ed2bf618b7c331180d94df5559878558fd1ebe6d Mon Sep 17 00:00:00 2001 From: Michael Yanni Date: Thu, 4 Dec 2025 17:50:01 -0800 Subject: [PATCH 315/392] Skipping ManagedWinRTComponentCanBeReferenced due to test failure. --- .../GivenThatWeWantToBuildAWindowsRuntimeComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs index 367227f02a97..073d0085c066 100644 --- a/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs +++ b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs @@ -89,7 +89,7 @@ public void It_successfully_builds_when_referencing_winmds(string targetFramewor .Pass(); } - [WindowsOnlyFact] + [WindowsOnlyFact(Skip = "https://github.com/dotnet/sdk/issues/52032")] public void ManagedWinRTComponentCanBeReferenced() { var managedWinRTComponent = new TestProject() From ea650b09a5b21a73c8f0e0a65b5145576361b642 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 5 Dec 2025 02:01:23 +0000 Subject: [PATCH 316/392] Update dependencies from https://github.com/dotnet/dotnet build 293404 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.HostModel, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.Platforms, Microsoft.WindowsDesktop.App.Internal (Version 10.0.2-servicing.25603.103 -> 10.0.2-servicing.25604.105) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.2 -> 10.0.2) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.25603.103 -> 10.0.0-preview.25604.105) Microsoft.Build (Version 18.0.6 -> 18.0.6) Microsoft.Build.Localization (Version 18.0.6-servicing-25603-103 -> 18.0.6-servicing-25604-105) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.0-rc.10403 -> 7.0.0-rc.10505) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.102 -> 10.0.102) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.25603.103 -> 5.0.0-2.25604.105) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.25603.103 -> 2.0.0-preview.1.25604.105) Microsoft.DiaSymReader (Version 2.2.2 -> 2.2.2) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.25603.103 -> 10.0.0-beta.25604.105) Microsoft.FSharp.Compiler (Version 14.0.102-servicing.25603.103 -> 14.0.102-servicing.25604.105) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.1-release-25603-103 -> 18.0.1-release-25604-105) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.102-servicing.25603.103 -> 10.0.102-servicing.25604.105) Microsoft.Web.Xdt (Version 3.2.2 -> 3.2.2) System.CommandLine (Version 2.0.2 -> 2.0.2) --- NuGet.config | 2 +- eng/Version.Details.props | 126 ++++++------ eng/Version.Details.xml | 392 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 262 insertions(+), 262 deletions(-) diff --git a/NuGet.config b/NuGet.config index 938d459f5562..c50302c100d5 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 87dbdf6e0803..cc094804f34f 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.2-servicing.25603.103 - 10.0.2-servicing.25603.103 - 10.0.2-servicing.25603.103 - 10.0.2-servicing.25603.103 + 10.0.2-servicing.25604.105 + 10.0.2-servicing.25604.105 + 10.0.2-servicing.25604.105 + 10.0.2-servicing.25604.105 10.0.2 - 10.0.2-servicing.25603.103 + 10.0.2-servicing.25604.105 10.0.2 10.0.2 10.0.2 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25603.103 + 10.0.2-servicing.25604.105 10.0.2 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25603.103 + 10.0.2-servicing.25604.105 10.0.2 - 10.0.2-servicing.25603.103 - 10.0.2-servicing.25603.103 - 10.0.0-preview.25603.103 + 10.0.2-servicing.25604.105 + 10.0.2-servicing.25604.105 + 10.0.0-preview.25604.105 10.0.2 10.0.2 18.0.6 - 18.0.6-servicing-25603-103 - 7.0.0-rc.10403 + 18.0.6-servicing-25604-105 + 7.0.0-rc.10505 10.0.102 - 5.0.0-2.25603.103 - 5.0.0-2.25603.103 - 5.0.0-2.25603.103 - 5.0.0-2.25603.103 - 5.0.0-2.25603.103 - 5.0.0-2.25603.103 - 5.0.0-2.25603.103 - 10.0.0-preview.25603.103 - 5.0.0-2.25603.103 - 5.0.0-2.25603.103 - 2.0.0-preview.1.25603.103 + 5.0.0-2.25604.105 + 5.0.0-2.25604.105 + 5.0.0-2.25604.105 + 5.0.0-2.25604.105 + 5.0.0-2.25604.105 + 5.0.0-2.25604.105 + 5.0.0-2.25604.105 + 10.0.0-preview.25604.105 + 5.0.0-2.25604.105 + 5.0.0-2.25604.105 + 2.0.0-preview.1.25604.105 2.2.2 - 10.0.0-beta.25603.103 - 10.0.0-beta.25603.103 - 10.0.0-beta.25603.103 - 10.0.0-beta.25603.103 - 10.0.0-beta.25603.103 - 10.0.0-beta.25603.103 + 10.0.0-beta.25604.105 + 10.0.0-beta.25604.105 + 10.0.0-beta.25604.105 + 10.0.0-beta.25604.105 + 10.0.0-beta.25604.105 + 10.0.0-beta.25604.105 10.0.2 10.0.2 - 10.0.2-servicing.25603.103 - 10.0.2-servicing.25603.103 - 10.0.0-beta.25603.103 - 10.0.0-beta.25603.103 + 10.0.2-servicing.25604.105 + 10.0.2-servicing.25604.105 + 10.0.0-beta.25604.105 + 10.0.0-beta.25604.105 10.0.2 10.0.2 10.0.2 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 14.0.102-servicing.25603.103 + 14.0.102-servicing.25604.105 10.0.2 - 5.0.0-2.25603.103 - 5.0.0-2.25603.103 - 10.0.2-servicing.25603.103 + 5.0.0-2.25604.105 + 5.0.0-2.25604.105 + 10.0.2-servicing.25604.105 10.0.2 10.0.2 10.0.0-preview.7.25377.103 - 10.0.0-preview.25603.103 - 10.0.2-servicing.25603.103 - 18.0.1-release-25603-103 + 10.0.0-preview.25604.105 + 10.0.2-servicing.25604.105 + 18.0.1-release-25604-105 10.0.2 - 10.0.2-servicing.25603.103 + 10.0.2-servicing.25604.105 10.0.102 10.0.102 10.0.102 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.102 10.0.102 10.0.102 - 10.0.102-servicing.25603.103 + 10.0.102-servicing.25604.105 10.0.102 - 10.0.102-servicing.25603.103 + 10.0.102-servicing.25604.105 10.0.102 10.0.102 - 10.0.102-servicing.25603.103 - 18.0.1-release-25603-103 - 18.0.1-release-25603-103 + 10.0.102-servicing.25604.105 + 18.0.1-release-25604-105 + 18.0.1-release-25604-105 3.2.2 10.0.2 - 10.0.2-servicing.25603.103 + 10.0.2-servicing.25604.105 10.0.2 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 - 7.0.0-rc.10403 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 + 7.0.0-rc.10505 10.0.2 2.0.2 10.0.2 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index de0c29513653..e9ed596f5f11 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab - + https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 5ddd0ddc0ebadca21645a05c419ed5a034454605 + 02dfa783c1f4223a5590a1b689ef381c337db1ab diff --git a/global.json b/global.json index 74806919f52a..9a99d52fe946 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25603.103", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25603.103", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25604.105", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25604.105", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 45156805c588da5a1c4e6354b763130c3625babe Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 5 Dec 2025 02:03:38 +0000 Subject: [PATCH 317/392] Update dependencies from https://github.com/microsoft/testfx build 20251204.3 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25575.3 -> To Version 2.1.0-preview.25604.3 MSTest From Version 4.1.0-preview.25575.3 -> To Version 4.1.0-preview.25604.3 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 979a30641fb8..75a339897b33 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25603.1 - 4.1.0-preview.25603.1 + 2.1.0-preview.25604.3 + 4.1.0-preview.25604.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 57a75b586f46..583779cb2120 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 5ddd0ddc0ebadca21645a05c419ed5a034454605 - + https://github.com/microsoft/testfx - a11abf7becb2795ce94216aadf8561c3f7c34497 + aaa16e9321c4344b439324378ddb23b60e1d3461 - + https://github.com/microsoft/testfx - a11abf7becb2795ce94216aadf8561c3f7c34497 + aaa16e9321c4344b439324378ddb23b60e1d3461 https://github.com/dotnet/dotnet From 5ac9be7d179f3b8401dff18143c79c84d030080e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 5 Dec 2025 02:03:54 +0000 Subject: [PATCH 318/392] Update dependencies from https://github.com/dotnet/msbuild build 20251204.2 On relative base path root Microsoft.SourceBuild.Intermediate.msbuild , Microsoft.Build.Localization From Version 17.14.36-servicing-25601-06 -> To Version 17.14.37-servicing-25604-02 Microsoft.Build From Version 17.14.36 -> To Version 17.14.37 --- NuGet.config | 2 +- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/NuGet.config b/NuGet.config index 5a77d97872a4..9a9b596a97a8 100644 --- a/NuGet.config +++ b/NuGet.config @@ -30,7 +30,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d982d2a6f48e..ff484d2958cf 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -69,18 +69,18 @@ b65413ac057eb0a54c51b76b1855bc377c2132c3 - + https://github.com/dotnet/msbuild - ee6457a6b06e66a5e4037549c84d8282ecd0df92 + 3393a8ad97da5d36d186589f1a9d7672a4ed3070 - + https://github.com/dotnet/msbuild - ee6457a6b06e66a5e4037549c84d8282ecd0df92 + 3393a8ad97da5d36d186589f1a9d7672a4ed3070 - + https://github.com/dotnet/msbuild - ee6457a6b06e66a5e4037549c84d8282ecd0df92 + 3393a8ad97da5d36d186589f1a9d7672a4ed3070 diff --git a/eng/Versions.props b/eng/Versions.props index d50b86454cd9..cc6d5f692841 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -182,8 +182,8 @@ At usage sites, either we use MicrosoftBuildMinimumVersion, or MicrosoftBuildVersion in source-only modes. Additionally, set the MinimumVSVersion for the installer UI that's required for targeting NetCurrent --> - 17.14.36 - 17.14.36-servicing-25601-06 + 17.14.37 + 17.14.37-servicing-25604-02 17.11.48 17.12 From 070ee98b00a20fd9494ae6dbb591d90e7761c8c5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 5 Dec 2025 02:04:26 +0000 Subject: [PATCH 319/392] Update dependencies from https://github.com/microsoft/testfx build 20251204.3 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25604.3 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25604.3 --- eng/Version.Details.props | 10 ++++------ eng/Version.Details.xml | 8 ++++---- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 22c7672baf30..dc3b21d924ae 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -89,8 +89,6 @@ This file should be imported by eng/Versions.props 2.2.0-beta.25523.111 10.0.0 10.0.0 - 10.0.2-servicing.25601.110 - 10.0.2-servicing.25601.110 10.0.0 10.0.0 10.0.0 @@ -141,13 +139,13 @@ This file should be imported by eng/Versions.props 2.1.0 - 5.3.0-1.25568.105 - 5.3.0-1.25568.105 + 5.3.0-2.25560.14 + 5.3.0-2.25560.14 2.0.0-preview.1.25527.1 - 2.1.0-preview.25603.1 - 4.1.0-preview.25603.1 + 2.1.0-preview.25604.3 + 4.1.0-preview.25604.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bf2b91cf0bab..0fb7d4279aa8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - a11abf7becb2795ce94216aadf8561c3f7c34497 + aaa16e9321c4344b439324378ddb23b60e1d3461 - + https://github.com/microsoft/testfx - a11abf7becb2795ce94216aadf8561c3f7c34497 + aaa16e9321c4344b439324378ddb23b60e1d3461 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From ca3d8986e76e3667f1f3b4f39da40a694848b16e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 5 Dec 2025 09:50:49 +0000 Subject: [PATCH 320/392] Update dependencies from https://github.com/dotnet/templating build 20251205.2 On relative base path root Microsoft.TemplateEngine.Abstractions From Version 9.0.309 -> To Version 9.0.309 Microsoft.TemplateEngine.Mocks From Version 9.0.309-servicing.25603.7 -> To Version 9.0.309-servicing.25605.2 --- NuGet.config | 2 +- eng/Version.Details.xml | 6 +++--- eng/Versions.props | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/NuGet.config b/NuGet.config index 9a9b596a97a8..d3d11f3c18f2 100644 --- a/NuGet.config +++ b/NuGet.config @@ -37,7 +37,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 361d9e35ca32..0006b72e01c4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,11 +3,11 @@ https://github.com/dotnet/templating - ed9c11bb66049bbb817f2435ab07dc359d780f5f + 4a8a3108c0fdd8f32f7a2f23d3b044085ec9c23a - + https://github.com/dotnet/templating - ed9c11bb66049bbb817f2435ab07dc359d780f5f + 4a8a3108c0fdd8f32f7a2f23d3b044085ec9c23a diff --git a/eng/Versions.props b/eng/Versions.props index 84d59dd5b41b..d5fb4cdfc278 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -195,7 +195,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 9.0.309-servicing.25603.7 + 9.0.309-servicing.25605.2 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 6565e3f1d0a310837aa67602d5b4bae92274e085 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 6 Dec 2025 02:02:28 +0000 Subject: [PATCH 321/392] Update dependencies from https://github.com/dotnet/templating build 20251204.8 On relative base path root Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Mocks From Version 8.0.417-servicing.25602.7 -> To Version 8.0.417-servicing.25604.8 Microsoft.TemplateEngine.Abstractions From Version 8.0.417 -> To Version 8.0.417 --- NuGet.config | 2 +- eng/Version.Details.xml | 10 +++++----- eng/Versions.props | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NuGet.config b/NuGet.config index d2b98ae83a68..776663bf519e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -17,7 +17,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7873c1827704..f2f9f1cd1c7f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -3,15 +3,15 @@ https://github.com/dotnet/templating - 0e52e7fcd03cf3bac61116830139162ed7038ab1 + 2b8df8be75e04c0a40e01cb311d6e7de293960d3 - + https://github.com/dotnet/templating - 0e52e7fcd03cf3bac61116830139162ed7038ab1 + 2b8df8be75e04c0a40e01cb311d6e7de293960d3 - + https://github.com/dotnet/templating - 0e52e7fcd03cf3bac61116830139162ed7038ab1 + 2b8df8be75e04c0a40e01cb311d6e7de293960d3 diff --git a/eng/Versions.props b/eng/Versions.props index 457f392b7944..553400387be7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -149,7 +149,7 @@ $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) - 8.0.417-servicing.25602.7 + 8.0.417-servicing.25604.8 $(MicrosoftTemplateEngineMocksPackageVersion) $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineMocksPackageVersion) From 5349b6f4092a1b2840c889e840dcac15226fd563 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 6 Dec 2025 02:02:58 +0000 Subject: [PATCH 322/392] Update dependencies from https://github.com/microsoft/testfx build 20251205.6 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25604.3 -> To Version 2.1.0-preview.25605.6 MSTest From Version 4.1.0-preview.25604.3 -> To Version 4.1.0-preview.25605.6 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 75a339897b33..d014369ad304 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25604.3 - 4.1.0-preview.25604.3 + 2.1.0-preview.25605.6 + 4.1.0-preview.25605.6 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 583779cb2120..b2d281aabeab 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 5ddd0ddc0ebadca21645a05c419ed5a034454605 - + https://github.com/microsoft/testfx - aaa16e9321c4344b439324378ddb23b60e1d3461 + 482dabb77a17c2f17caa88b9548e9e777897621f - + https://github.com/microsoft/testfx - aaa16e9321c4344b439324378ddb23b60e1d3461 + 482dabb77a17c2f17caa88b9548e9e777897621f https://github.com/dotnet/dotnet From 2a3c1d2db60d2209c854129095c2540fb314f766 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 6 Dec 2025 02:03:16 +0000 Subject: [PATCH 323/392] Update dependencies from https://github.com/microsoft/testfx build 20251205.6 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25605.6 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25605.6 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index dc3b21d924ae..2531b49f25a5 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -144,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25604.3 - 4.1.0-preview.25604.3 + 2.1.0-preview.25605.6 + 4.1.0-preview.25605.6 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0fb7d4279aa8..c9560e89e999 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - aaa16e9321c4344b439324378ddb23b60e1d3461 + 482dabb77a17c2f17caa88b9548e9e777897621f - + https://github.com/microsoft/testfx - aaa16e9321c4344b439324378ddb23b60e1d3461 + 482dabb77a17c2f17caa88b9548e9e777897621f https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 0b2cd583e9764625a4ad6628e863a6679d07b1b8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 7 Dec 2025 02:02:40 +0000 Subject: [PATCH 324/392] Update dependencies from https://github.com/dotnet/dotnet build 293627 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.HostModel, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.Platforms, Microsoft.WindowsDesktop.App.Internal (Version 10.0.2-servicing.25604.105 -> 10.0.2-servicing.25605.116) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.2 -> 10.0.2) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.25604.105 -> 10.0.0-preview.25605.116) Microsoft.Build (Version 18.0.6 -> 18.0.6) Microsoft.Build.Localization (Version 18.0.6-servicing-25604-105 -> 18.0.6-servicing-25605-116) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.0-rc.10505 -> 7.0.0-rc.10616) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.102 -> 10.0.102) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.25604.105 -> 5.0.0-2.25605.116) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.25604.105 -> 2.0.0-preview.1.25605.116) Microsoft.DiaSymReader (Version 2.2.2 -> 2.2.2) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.25604.105 -> 10.0.0-beta.25605.116) Microsoft.FSharp.Compiler (Version 14.0.102-servicing.25604.105 -> 14.0.102-servicing.25605.116) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.1-release-25604-105 -> 18.0.1-release-25605-116) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.102-servicing.25604.105 -> 10.0.102-servicing.25605.116) Microsoft.Web.Xdt (Version 3.2.2 -> 3.2.2) System.CommandLine (Version 2.0.2 -> 2.0.2) --- NuGet.config | 2 +- eng/Version.Details.props | 126 +++--- eng/Version.Details.xml | 392 +++++++++--------- .../job/publish-build-assets.yml | 13 + .../job/source-index-stage1.yml | 4 +- .../core-templates/post-build/post-build.yml | 17 +- .../steps/install-microbuild.yml | 34 +- .../core-templates/steps/publish-logs.yml | 4 +- .../core-templates/steps/source-build.yml | 2 +- eng/common/post-build/publish-using-darc.ps1 | 4 +- eng/common/post-build/redact-logs.ps1 | 5 +- eng/common/sdk-task.ps1 | 2 + global.json | 4 +- 13 files changed, 329 insertions(+), 280 deletions(-) diff --git a/NuGet.config b/NuGet.config index c50302c100d5..9da2d8662e4e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 66395e9f0fb9..3c78c3c9bfd9 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.2-servicing.25604.105 - 10.0.2-servicing.25604.105 - 10.0.2-servicing.25604.105 - 10.0.2-servicing.25604.105 + 10.0.2-servicing.25605.116 + 10.0.2-servicing.25605.116 + 10.0.2-servicing.25605.116 + 10.0.2-servicing.25605.116 10.0.2 - 10.0.2-servicing.25604.105 + 10.0.2-servicing.25605.116 10.0.2 10.0.2 10.0.2 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25604.105 + 10.0.2-servicing.25605.116 10.0.2 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25604.105 + 10.0.2-servicing.25605.116 10.0.2 - 10.0.2-servicing.25604.105 - 10.0.2-servicing.25604.105 - 10.0.0-preview.25604.105 + 10.0.2-servicing.25605.116 + 10.0.2-servicing.25605.116 + 10.0.0-preview.25605.116 10.0.2 10.0.2 18.0.6 - 18.0.6-servicing-25604-105 - 7.0.0-rc.10505 + 18.0.6-servicing-25605-116 + 7.0.0-rc.10616 10.0.102 - 5.0.0-2.25604.105 - 5.0.0-2.25604.105 - 5.0.0-2.25604.105 - 5.0.0-2.25604.105 - 5.0.0-2.25604.105 - 5.0.0-2.25604.105 - 5.0.0-2.25604.105 - 10.0.0-preview.25604.105 - 5.0.0-2.25604.105 - 5.0.0-2.25604.105 - 2.0.0-preview.1.25604.105 + 5.0.0-2.25605.116 + 5.0.0-2.25605.116 + 5.0.0-2.25605.116 + 5.0.0-2.25605.116 + 5.0.0-2.25605.116 + 5.0.0-2.25605.116 + 5.0.0-2.25605.116 + 10.0.0-preview.25605.116 + 5.0.0-2.25605.116 + 5.0.0-2.25605.116 + 2.0.0-preview.1.25605.116 2.2.2 - 10.0.0-beta.25604.105 - 10.0.0-beta.25604.105 - 10.0.0-beta.25604.105 - 10.0.0-beta.25604.105 - 10.0.0-beta.25604.105 - 10.0.0-beta.25604.105 + 10.0.0-beta.25605.116 + 10.0.0-beta.25605.116 + 10.0.0-beta.25605.116 + 10.0.0-beta.25605.116 + 10.0.0-beta.25605.116 + 10.0.0-beta.25605.116 10.0.2 10.0.2 - 10.0.2-servicing.25604.105 - 10.0.2-servicing.25604.105 - 10.0.0-beta.25604.105 - 10.0.0-beta.25604.105 + 10.0.2-servicing.25605.116 + 10.0.2-servicing.25605.116 + 10.0.0-beta.25605.116 + 10.0.0-beta.25605.116 10.0.2 10.0.2 10.0.2 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 14.0.102-servicing.25604.105 + 14.0.102-servicing.25605.116 10.0.2 - 5.0.0-2.25604.105 - 5.0.0-2.25604.105 - 10.0.2-servicing.25604.105 + 5.0.0-2.25605.116 + 5.0.0-2.25605.116 + 10.0.2-servicing.25605.116 10.0.2 10.0.2 10.0.0-preview.7.25377.103 - 10.0.0-preview.25604.105 - 10.0.2-servicing.25604.105 - 18.0.1-release-25604-105 + 10.0.0-preview.25605.116 + 10.0.2-servicing.25605.116 + 18.0.1-release-25605-116 10.0.2 - 10.0.2-servicing.25604.105 + 10.0.2-servicing.25605.116 10.0.102 10.0.102 10.0.102 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.102 10.0.102 10.0.102 - 10.0.102-servicing.25604.105 + 10.0.102-servicing.25605.116 10.0.102 - 10.0.102-servicing.25604.105 + 10.0.102-servicing.25605.116 10.0.102 10.0.102 - 10.0.102-servicing.25604.105 - 18.0.1-release-25604-105 - 18.0.1-release-25604-105 + 10.0.102-servicing.25605.116 + 18.0.1-release-25605-116 + 18.0.1-release-25605-116 3.2.2 10.0.2 - 10.0.2-servicing.25604.105 + 10.0.2-servicing.25605.116 10.0.2 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 - 7.0.0-rc.10505 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 + 7.0.0-rc.10616 10.0.2 2.0.2 10.0.2 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c47de9b3d4a5..1c1c19c2cff9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 - + https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 02dfa783c1f4223a5590a1b689ef381c337db1ab + ed2ddf8a7ae00575eadfc737cb828f1c3a632305 diff --git a/eng/common/core-templates/job/publish-build-assets.yml b/eng/common/core-templates/job/publish-build-assets.yml index e7daa6d2fafe..3437087c80fc 100644 --- a/eng/common/core-templates/job/publish-build-assets.yml +++ b/eng/common/core-templates/job/publish-build-assets.yml @@ -120,6 +120,14 @@ jobs: - task: NuGetAuthenticate@1 + # Populate internal runtime variables. + - template: /eng/common/templates/steps/enable-internal-sources.yml + ${{ if eq(variables['System.TeamProject'], 'DevDiv') }}: + parameters: + legacyCredential: $(dn-bot-dnceng-artifact-feeds-rw) + + - template: /eng/common/templates/steps/enable-internal-runtimes.yml + - task: AzureCLI@2 displayName: Publish Build Assets inputs: @@ -132,6 +140,9 @@ jobs: /p:IsAssetlessBuild=${{ parameters.isAssetlessBuild }} /p:MaestroApiEndpoint=https://maestro.dot.net /p:OfficialBuildId=$(OfficialBuildId) + -runtimeSourceFeed https://ci.dot.net/internal + -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' + condition: ${{ parameters.condition }} continueOnError: ${{ parameters.continueOnError }} @@ -200,6 +211,8 @@ jobs: -ArtifactsPublishingAdditionalParameters '${{ parameters.artifactsPublishingAdditionalParameters }}' -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' -SkipAssetsPublishing '${{ parameters.isAssetlessBuild }}' + -runtimeSourceFeed https://ci.dot.net/internal + -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' - ${{ if eq(parameters.enablePublishBuildArtifacts, 'true') }}: - template: /eng/common/core-templates/steps/publish-logs.yml diff --git a/eng/common/core-templates/job/source-index-stage1.yml b/eng/common/core-templates/job/source-index-stage1.yml index 30530359a5d6..58b7a76814e0 100644 --- a/eng/common/core-templates/job/source-index-stage1.yml +++ b/eng/common/core-templates/job/source-index-stage1.yml @@ -25,10 +25,10 @@ jobs: pool: ${{ if eq(variables['System.TeamProject'], 'public') }}: name: $(DncEngPublicBuildPool) - image: windows.vs2022.amd64.open + image: windows.vs2026preview.scout.amd64.open ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $(DncEngInternalBuildPool) - image: windows.vs2022.amd64 + image: windows.vs2026preview.scout.amd64 steps: - ${{ if eq(parameters.is1ESPipeline, '') }}: diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index 55361908c2e9..9423d71ca3a2 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -127,11 +127,11 @@ stages: ${{ else }}: ${{ if eq(parameters.is1ESPipeline, true) }}: name: $(DncEngInternalBuildPool) - image: windows.vs2022.amd64 + image: windows.vs2026preview.scout.amd64 os: windows ${{ else }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2026preview.scout.amd64 steps: - template: /eng/common/core-templates/post-build/setup-maestro-vars.yml @@ -175,7 +175,7 @@ stages: os: windows ${{ else }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2026preview.scout.amd64 steps: - template: /eng/common/core-templates/post-build/setup-maestro-vars.yml parameters: @@ -236,7 +236,7 @@ stages: os: windows ${{ else }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2026preview.scout.amd64 steps: - template: /eng/common/core-templates/post-build/setup-maestro-vars.yml parameters: @@ -307,6 +307,13 @@ stages: - task: NuGetAuthenticate@1 + # Populate internal runtime variables. + - template: /eng/common/templates/steps/enable-internal-sources.yml + parameters: + legacyCredential: $(dn-bot-dnceng-artifact-feeds-rw) + + - template: /eng/common/templates/steps/enable-internal-runtimes.yml + # Darc is targeting 8.0, so make sure it's installed - task: UseDotNet@2 inputs: @@ -328,3 +335,5 @@ stages: -ArtifactsPublishingAdditionalParameters '${{ parameters.artifactsPublishingAdditionalParameters }}' -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' -SkipAssetsPublishing '${{ parameters.isAssetlessBuild }}' + -runtimeSourceFeed https://ci.dot.net/internal + -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' diff --git a/eng/common/core-templates/steps/install-microbuild.yml b/eng/common/core-templates/steps/install-microbuild.yml index f2248ebfd730..553fce66b940 100644 --- a/eng/common/core-templates/steps/install-microbuild.yml +++ b/eng/common/core-templates/steps/install-microbuild.yml @@ -11,22 +11,41 @@ parameters: # Unfortunately, _SignType can't be used to exclude the use of the service connection in non-real sign scenarios. The # variable is not available in template expression. _SignType has a very large proliferation across .NET, so replacing it is tough. microbuildUseESRP: true + # Microbuild installation directory + microBuildOutputFolder: $(Agent.TempDirectory)/MicroBuild continueOnError: false steps: - ${{ if eq(parameters.enableMicrobuild, 'true') }}: - ${{ if eq(parameters.enableMicrobuildForMacAndLinux, 'true') }}: - # Installing .NET 8 is required to use the MicroBuild signing plugin on non-Windows platforms + # Needed to download the MicroBuild plugin nupkgs on Mac and Linux when nuget.exe is unavailable - task: UseDotNet@2 displayName: Install .NET 8.0 SDK for MicroBuild Plugin inputs: packageType: sdk version: 8.0.x - # Installing the SDK in a '.dotnet-microbuild' directory is required for signing. - # See target FindDotNetPathForMicroBuild in arcade/src/Microsoft.DotNet.Arcade.Sdk/tools/Sign.proj - # Do not remove '.dotnet-microbuild' from the path without changing the corresponding logic. - installationPath: $(Agent.TempDirectory)/.dotnet-microbuild + installationPath: ${{ parameters.microBuildOutputFolder }}/.dotnet-microbuild + condition: and(succeeded(), ne(variables['Agent.Os'], 'Windows_NT')) + + - script: | + set -euo pipefail + + # UseDotNet@2 prepends the dotnet executable path to the PATH variable, so we can call dotnet directly + version=$(dotnet --version) + cat << 'EOF' > ${{ parameters.microBuildOutputFolder }}/global.json + { + "sdk": { + "version": "$version", + "paths": [ + "${{ parameters.microBuildOutputFolder }}/.dotnet-microbuild" + ], + "errorMessage": "The .NET SDK version $version is required to install the MicroBuild signing plugin." + } + } + EOF + displayName: 'Add global.json to MicroBuild Installation path' + workingDirectory: ${{ parameters.microBuildOutputFolder }} condition: and(succeeded(), ne(variables['Agent.Os'], 'Windows_NT')) - script: | @@ -64,7 +83,7 @@ steps: ConnectedPMEServiceName: 248d384a-b39b-46e3-8ad5-c2c210d5e7ca env: TeamName: $(_TeamName) - MicroBuildOutputFolderOverride: $(Agent.TempDirectory)/MicroBuild + MicroBuildOutputFolderOverride: ${{ parameters.microBuildOutputFolder }} SYSTEM_ACCESSTOKEN: $(System.AccessToken) continueOnError: ${{ parameters.continueOnError }} condition: and(succeeded(), eq(variables['Agent.Os'], 'Windows_NT'), in(variables['_SignType'], 'real', 'test')) @@ -76,6 +95,7 @@ steps: signType: $(_SignType) zipSources: false feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json + workingDirectory: ${{ parameters.microBuildOutputFolder }} ${{ if eq(parameters.microbuildUseESRP, true) }}: ConnectedServiceName: 'MicroBuild Signing Task (DevDiv)' ${{ if eq(variables['System.TeamProject'], 'DevDiv') }}: @@ -84,7 +104,7 @@ steps: ConnectedPMEServiceName: c24de2a5-cc7a-493d-95e4-8e5ff5cad2bc env: TeamName: $(_TeamName) - MicroBuildOutputFolderOverride: $(Agent.TempDirectory)/MicroBuild + MicroBuildOutputFolderOverride: ${{ parameters.microBuildOutputFolder }} SYSTEM_ACCESSTOKEN: $(System.AccessToken) continueOnError: ${{ parameters.continueOnError }} condition: and(succeeded(), ne(variables['Agent.Os'], 'Windows_NT'), eq(variables['_SignType'], 'real')) diff --git a/eng/common/core-templates/steps/publish-logs.yml b/eng/common/core-templates/steps/publish-logs.yml index 10f825e270a0..5a927b4c7bcb 100644 --- a/eng/common/core-templates/steps/publish-logs.yml +++ b/eng/common/core-templates/steps/publish-logs.yml @@ -26,8 +26,10 @@ steps: # 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}} + -BinlogToolVersion '${{parameters.BinlogToolVersion}}' -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' + -runtimeSourceFeed https://ci.dot.net/internal + -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' '$(publishing-dnceng-devdiv-code-r-build-re)' '$(MaestroAccessToken)' '$(dn-bot-all-orgs-artifact-feeds-rw)' diff --git a/eng/common/core-templates/steps/source-build.yml b/eng/common/core-templates/steps/source-build.yml index acf16ed34963..b9c86c18ae42 100644 --- a/eng/common/core-templates/steps/source-build.yml +++ b/eng/common/core-templates/steps/source-build.yml @@ -24,7 +24,7 @@ steps: # in the default public locations. internalRuntimeDownloadArgs= if [ '$(dotnetbuilds-internal-container-read-token-base64)' != '$''(dotnetbuilds-internal-container-read-token-base64)' ]; then - internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://ci.dot.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' + internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://ci.dot.net/internal --runtimesourcefeedkey '$(dotnetbuilds-internal-container-read-token-base64)'' fi buildConfig=Release diff --git a/eng/common/post-build/publish-using-darc.ps1 b/eng/common/post-build/publish-using-darc.ps1 index 1eda208a3bbf..48e55598bdd2 100644 --- a/eng/common/post-build/publish-using-darc.ps1 +++ b/eng/common/post-build/publish-using-darc.ps1 @@ -7,7 +7,9 @@ param( [Parameter(Mandatory=$false)][string] $ArtifactsPublishingAdditionalParameters, [Parameter(Mandatory=$false)][string] $SymbolPublishingAdditionalParameters, [Parameter(Mandatory=$false)][string] $RequireDefaultChannels, - [Parameter(Mandatory=$false)][string] $SkipAssetsPublishing + [Parameter(Mandatory=$false)][string] $SkipAssetsPublishing, + [Parameter(Mandatory=$false)][string] $runtimeSourceFeed, + [Parameter(Mandatory=$false)][string] $runtimeSourceFeedKey ) try { diff --git a/eng/common/post-build/redact-logs.ps1 b/eng/common/post-build/redact-logs.ps1 index b7fc19591507..472d5bb562c9 100644 --- a/eng/common/post-build/redact-logs.ps1 +++ b/eng/common/post-build/redact-logs.ps1 @@ -7,8 +7,9 @@ param( # File with strings to redact - separated by newlines. # For comments start the line with '# ' - such lines are ignored [Parameter(Mandatory=$false)][string] $TokensFilePath, - [Parameter(ValueFromRemainingArguments=$true)][String[]]$TokensToRedact -) + [Parameter(ValueFromRemainingArguments=$true)][String[]]$TokensToRedact, + [Parameter(Mandatory=$false)][string] $runtimeSourceFeed, + [Parameter(Mandatory=$false)][string] $runtimeSourceFeedKey) try { $ErrorActionPreference = 'Stop' diff --git a/eng/common/sdk-task.ps1 b/eng/common/sdk-task.ps1 index b62e132d32a4..73183deff5f3 100644 --- a/eng/common/sdk-task.ps1 +++ b/eng/common/sdk-task.ps1 @@ -9,6 +9,8 @@ Param( [switch][Alias('nobl')]$excludeCIBinaryLog, [switch]$noWarnAsError, [switch] $help, + [string] $runtimeSourceFeed = '', + [string] $runtimeSourceFeedKey = '', [Parameter(ValueFromRemainingArguments=$true)][String[]]$properties ) diff --git a/global.json b/global.json index 9a99d52fe946..0c497f2758bc 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25604.105", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25604.105", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25605.116", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25605.116", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From f23ddb3b105f5811e26be4318012e82d58456a30 Mon Sep 17 00:00:00 2001 From: "Donna Chen (BEYONDSOFT CONSULTING INC)" Date: Tue, 9 Dec 2025 09:58:32 +0800 Subject: [PATCH 325/392] revert change to tools.ps1 --- eng/common/tools.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index e5f53b923a5e..c36d96bdad88 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -306,7 +306,7 @@ function InstallDotNet([string] $dotnetRoot, if ($runtime -eq "aspnetcore") { $runtimePath = $runtimePath + "\Microsoft.AspNetCore.App" } if ($runtime -eq "windowsdesktop") { $runtimePath = $runtimePath + "\Microsoft.WindowsDesktop.App" } $runtimePath = $runtimePath + "\" + $version - + $dotnetVersionLabel = "runtime toolset '$runtime/$architecture v$version'" if (Test-Path $runtimePath) { From a03456a3d197327e78f4ba50a96e71b50f0de5ca Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 9 Dec 2025 02:02:49 +0000 Subject: [PATCH 326/392] Update dependencies from https://github.com/dotnet/dotnet build 293783 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.HostModel, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.Platforms, Microsoft.WindowsDesktop.App.Internal (Version 10.0.2-servicing.25605.116 -> 10.0.2-servicing.25608.105) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.2 -> 10.0.2) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.25605.116 -> 10.0.0-preview.25608.105) Microsoft.Build (Version 18.0.6 -> 18.0.6) Microsoft.Build.Localization (Version 18.0.6-servicing-25605-116 -> 18.0.6-servicing-25608-105) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.0-rc.10616 -> 7.0.0-rc.10905) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.102 -> 10.0.102) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.25605.116 -> 5.0.0-2.25608.105) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.25605.116 -> 2.0.0-preview.1.25608.105) Microsoft.DiaSymReader (Version 2.2.2 -> 2.2.2) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.25605.116 -> 10.0.0-beta.25608.105) Microsoft.FSharp.Compiler (Version 14.0.102-servicing.25605.116 -> 14.0.102-servicing.25608.105) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.1-release-25605-116 -> 18.0.1-release-25608-105) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.102-servicing.25605.116 -> 10.0.102-servicing.25608.105) Microsoft.Web.Xdt (Version 3.2.2 -> 3.2.2) System.CommandLine (Version 2.0.2 -> 2.0.2) --- NuGet.config | 2 +- eng/Version.Details.props | 126 +++--- eng/Version.Details.xml | 392 +++++++++--------- .../core-templates/job/source-build.yml | 2 +- .../job/source-index-stage1.yml | 4 +- eng/common/sdk-task.ps1 | 2 +- eng/common/tools.ps1 | 6 +- global.json | 4 +- 8 files changed, 269 insertions(+), 269 deletions(-) diff --git a/NuGet.config b/NuGet.config index 9da2d8662e4e..41ada00ac331 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 3c78c3c9bfd9..70702d8d5407 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.2-servicing.25605.116 - 10.0.2-servicing.25605.116 - 10.0.2-servicing.25605.116 - 10.0.2-servicing.25605.116 + 10.0.2-servicing.25608.105 + 10.0.2-servicing.25608.105 + 10.0.2-servicing.25608.105 + 10.0.2-servicing.25608.105 10.0.2 - 10.0.2-servicing.25605.116 + 10.0.2-servicing.25608.105 10.0.2 10.0.2 10.0.2 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25605.116 + 10.0.2-servicing.25608.105 10.0.2 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25605.116 + 10.0.2-servicing.25608.105 10.0.2 - 10.0.2-servicing.25605.116 - 10.0.2-servicing.25605.116 - 10.0.0-preview.25605.116 + 10.0.2-servicing.25608.105 + 10.0.2-servicing.25608.105 + 10.0.0-preview.25608.105 10.0.2 10.0.2 18.0.6 - 18.0.6-servicing-25605-116 - 7.0.0-rc.10616 + 18.0.6-servicing-25608-105 + 7.0.0-rc.10905 10.0.102 - 5.0.0-2.25605.116 - 5.0.0-2.25605.116 - 5.0.0-2.25605.116 - 5.0.0-2.25605.116 - 5.0.0-2.25605.116 - 5.0.0-2.25605.116 - 5.0.0-2.25605.116 - 10.0.0-preview.25605.116 - 5.0.0-2.25605.116 - 5.0.0-2.25605.116 - 2.0.0-preview.1.25605.116 + 5.0.0-2.25608.105 + 5.0.0-2.25608.105 + 5.0.0-2.25608.105 + 5.0.0-2.25608.105 + 5.0.0-2.25608.105 + 5.0.0-2.25608.105 + 5.0.0-2.25608.105 + 10.0.0-preview.25608.105 + 5.0.0-2.25608.105 + 5.0.0-2.25608.105 + 2.0.0-preview.1.25608.105 2.2.2 - 10.0.0-beta.25605.116 - 10.0.0-beta.25605.116 - 10.0.0-beta.25605.116 - 10.0.0-beta.25605.116 - 10.0.0-beta.25605.116 - 10.0.0-beta.25605.116 + 10.0.0-beta.25608.105 + 10.0.0-beta.25608.105 + 10.0.0-beta.25608.105 + 10.0.0-beta.25608.105 + 10.0.0-beta.25608.105 + 10.0.0-beta.25608.105 10.0.2 10.0.2 - 10.0.2-servicing.25605.116 - 10.0.2-servicing.25605.116 - 10.0.0-beta.25605.116 - 10.0.0-beta.25605.116 + 10.0.2-servicing.25608.105 + 10.0.2-servicing.25608.105 + 10.0.0-beta.25608.105 + 10.0.0-beta.25608.105 10.0.2 10.0.2 10.0.2 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 14.0.102-servicing.25605.116 + 14.0.102-servicing.25608.105 10.0.2 - 5.0.0-2.25605.116 - 5.0.0-2.25605.116 - 10.0.2-servicing.25605.116 + 5.0.0-2.25608.105 + 5.0.0-2.25608.105 + 10.0.2-servicing.25608.105 10.0.2 10.0.2 10.0.0-preview.7.25377.103 - 10.0.0-preview.25605.116 - 10.0.2-servicing.25605.116 - 18.0.1-release-25605-116 + 10.0.0-preview.25608.105 + 10.0.2-servicing.25608.105 + 18.0.1-release-25608-105 10.0.2 - 10.0.2-servicing.25605.116 + 10.0.2-servicing.25608.105 10.0.102 10.0.102 10.0.102 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.102 10.0.102 10.0.102 - 10.0.102-servicing.25605.116 + 10.0.102-servicing.25608.105 10.0.102 - 10.0.102-servicing.25605.116 + 10.0.102-servicing.25608.105 10.0.102 10.0.102 - 10.0.102-servicing.25605.116 - 18.0.1-release-25605-116 - 18.0.1-release-25605-116 + 10.0.102-servicing.25608.105 + 18.0.1-release-25608-105 + 18.0.1-release-25608-105 3.2.2 10.0.2 - 10.0.2-servicing.25605.116 + 10.0.2-servicing.25608.105 10.0.2 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 - 7.0.0-rc.10616 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 + 7.0.0-rc.10905 10.0.2 2.0.2 10.0.2 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1c1c19c2cff9..d468b54e279f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - ed2ddf8a7ae00575eadfc737cb828f1c3a632305 + 279bb6e979485785576d9279b6582cf7006c6f91 diff --git a/eng/common/core-templates/job/source-build.yml b/eng/common/core-templates/job/source-build.yml index 4f45cce0f3f5..d805d5faeb94 100644 --- a/eng/common/core-templates/job/source-build.yml +++ b/eng/common/core-templates/job/source-build.yml @@ -63,7 +63,7 @@ jobs: demands: ImageOverride -equals build.ubuntu.2004.amd64 ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore1ESPool-Svc-Internal'), False, 'NetCore1ESPool-Internal')] - image: 1es-azurelinux-3 + image: 1es-mariner-2 os: linux ${{ else }}: pool: diff --git a/eng/common/core-templates/job/source-index-stage1.yml b/eng/common/core-templates/job/source-index-stage1.yml index 58b7a76814e0..76baf5c27258 100644 --- a/eng/common/core-templates/job/source-index-stage1.yml +++ b/eng/common/core-templates/job/source-index-stage1.yml @@ -3,7 +3,7 @@ parameters: sourceIndexBuildCommand: powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -Command "eng/common/build.ps1 -restore -build -binarylog -ci" preSteps: [] binlogPath: artifacts/log/Debug/Build.binlog - condition: '' + condition: eq(variables['Build.SourceBranch'], 'refs/heads/main') dependsOn: '' pool: '' is1ESPipeline: '' @@ -41,4 +41,4 @@ jobs: - template: /eng/common/core-templates/steps/source-index-stage1-publish.yml parameters: - binLogPath: ${{ parameters.binLogPath }} \ No newline at end of file + binLogPath: ${{ parameters.binLogPath }} diff --git a/eng/common/sdk-task.ps1 b/eng/common/sdk-task.ps1 index 73183deff5f3..b64b66a6275b 100644 --- a/eng/common/sdk-task.ps1 +++ b/eng/common/sdk-task.ps1 @@ -70,7 +70,7 @@ try { $GlobalJson.tools | Add-Member -Name "vs" -Value (ConvertFrom-Json "{ `"version`": `"16.5`" }") -MemberType NoteProperty } if( -not ($GlobalJson.tools.PSObject.Properties.Name -match "xcopy-msbuild" )) { - $GlobalJson.tools | Add-Member -Name "xcopy-msbuild" -Value "17.13.0" -MemberType NoteProperty + $GlobalJson.tools | Add-Member -Name "xcopy-msbuild" -Value "18.0.0" -MemberType NoteProperty } if ($GlobalJson.tools."xcopy-msbuild".Trim() -ine "none") { $xcopyMSBuildToolsFolder = InitializeXCopyMSBuild $GlobalJson.tools."xcopy-msbuild" -install $true diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index c36d96bdad88..578705ee4dbd 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -394,8 +394,8 @@ function InitializeVisualStudioMSBuild([bool]$install, [object]$vsRequirements = # If the version of msbuild is going to be xcopied, # use this version. Version matches a package here: - # https://dev.azure.com/dnceng/public/_artifacts/feed/dotnet-eng/NuGet/Microsoft.DotNet.Arcade.MSBuild.Xcopy/versions/17.13.0 - $defaultXCopyMSBuildVersion = '17.13.0' + # https://dev.azure.com/dnceng/public/_artifacts/feed/dotnet-eng/NuGet/Microsoft.DotNet.Arcade.MSBuild.Xcopy/versions/18.0.0 + $defaultXCopyMSBuildVersion = '18.0.0' if (!$vsRequirements) { if (Get-Member -InputObject $GlobalJson.tools -Name 'vs') { @@ -954,4 +954,4 @@ function Enable-Nuget-EnhancedRetry() { Write-PipelineSetVariable -Name 'NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000' Write-PipelineSetVariable -Name 'NUGET_RETRY_HTTP_429' -Value 'true' } -} \ No newline at end of file +} diff --git a/global.json b/global.json index 0c497f2758bc..7fa138d99a4f 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25605.116", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25605.116", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25608.105", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25608.105", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 59ae1e9c55ecf4173fecdf107021ad0cd3baba8d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 10 Dec 2025 02:02:51 +0000 Subject: [PATCH 327/392] Update dependencies from https://github.com/dotnet/dotnet build 294071 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.HostModel, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.Platforms, Microsoft.WindowsDesktop.App.Internal (Version 10.0.2-servicing.25608.105 -> 10.0.2-servicing.25609.106) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.2 -> 10.0.2) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.25608.105 -> 10.0.0-preview.25609.106) Microsoft.Build (Version 18.0.6 -> 18.0.6) Microsoft.Build.Localization (Version 18.0.6-servicing-25608-105 -> 18.0.6-servicing-25609-106) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.0-rc.10905 -> 7.0.0-rc.11006) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.102 -> 10.0.102) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.25608.105 -> 5.0.0-2.25609.106) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.25608.105 -> 2.0.0-preview.1.25609.106) Microsoft.DiaSymReader (Version 2.2.2 -> 2.2.2) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.25608.105 -> 10.0.0-beta.25609.106) Microsoft.FSharp.Compiler (Version 14.0.102-servicing.25608.105 -> 14.0.102-servicing.25609.106) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.1-release-25608-105 -> 18.0.1-release-25609-106) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.102-servicing.25608.105 -> 10.0.102-servicing.25609.106) Microsoft.Web.Xdt (Version 3.2.2 -> 3.2.2) System.CommandLine (Version 2.0.2 -> 2.0.2) --- NuGet.config | 2 +- eng/Version.Details.props | 126 ++++++------ eng/Version.Details.xml | 392 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 262 insertions(+), 262 deletions(-) diff --git a/NuGet.config b/NuGet.config index 41ada00ac331..55f6d1b4e282 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 70702d8d5407..59f2887fd727 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.2-servicing.25608.105 - 10.0.2-servicing.25608.105 - 10.0.2-servicing.25608.105 - 10.0.2-servicing.25608.105 + 10.0.2-servicing.25609.106 + 10.0.2-servicing.25609.106 + 10.0.2-servicing.25609.106 + 10.0.2-servicing.25609.106 10.0.2 - 10.0.2-servicing.25608.105 + 10.0.2-servicing.25609.106 10.0.2 10.0.2 10.0.2 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25608.105 + 10.0.2-servicing.25609.106 10.0.2 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25608.105 + 10.0.2-servicing.25609.106 10.0.2 - 10.0.2-servicing.25608.105 - 10.0.2-servicing.25608.105 - 10.0.0-preview.25608.105 + 10.0.2-servicing.25609.106 + 10.0.2-servicing.25609.106 + 10.0.0-preview.25609.106 10.0.2 10.0.2 18.0.6 - 18.0.6-servicing-25608-105 - 7.0.0-rc.10905 + 18.0.6-servicing-25609-106 + 7.0.0-rc.11006 10.0.102 - 5.0.0-2.25608.105 - 5.0.0-2.25608.105 - 5.0.0-2.25608.105 - 5.0.0-2.25608.105 - 5.0.0-2.25608.105 - 5.0.0-2.25608.105 - 5.0.0-2.25608.105 - 10.0.0-preview.25608.105 - 5.0.0-2.25608.105 - 5.0.0-2.25608.105 - 2.0.0-preview.1.25608.105 + 5.0.0-2.25609.106 + 5.0.0-2.25609.106 + 5.0.0-2.25609.106 + 5.0.0-2.25609.106 + 5.0.0-2.25609.106 + 5.0.0-2.25609.106 + 5.0.0-2.25609.106 + 10.0.0-preview.25609.106 + 5.0.0-2.25609.106 + 5.0.0-2.25609.106 + 2.0.0-preview.1.25609.106 2.2.2 - 10.0.0-beta.25608.105 - 10.0.0-beta.25608.105 - 10.0.0-beta.25608.105 - 10.0.0-beta.25608.105 - 10.0.0-beta.25608.105 - 10.0.0-beta.25608.105 + 10.0.0-beta.25609.106 + 10.0.0-beta.25609.106 + 10.0.0-beta.25609.106 + 10.0.0-beta.25609.106 + 10.0.0-beta.25609.106 + 10.0.0-beta.25609.106 10.0.2 10.0.2 - 10.0.2-servicing.25608.105 - 10.0.2-servicing.25608.105 - 10.0.0-beta.25608.105 - 10.0.0-beta.25608.105 + 10.0.2-servicing.25609.106 + 10.0.2-servicing.25609.106 + 10.0.0-beta.25609.106 + 10.0.0-beta.25609.106 10.0.2 10.0.2 10.0.2 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 14.0.102-servicing.25608.105 + 14.0.102-servicing.25609.106 10.0.2 - 5.0.0-2.25608.105 - 5.0.0-2.25608.105 - 10.0.2-servicing.25608.105 + 5.0.0-2.25609.106 + 5.0.0-2.25609.106 + 10.0.2-servicing.25609.106 10.0.2 10.0.2 10.0.0-preview.7.25377.103 - 10.0.0-preview.25608.105 - 10.0.2-servicing.25608.105 - 18.0.1-release-25608-105 + 10.0.0-preview.25609.106 + 10.0.2-servicing.25609.106 + 18.0.1-release-25609-106 10.0.2 - 10.0.2-servicing.25608.105 + 10.0.2-servicing.25609.106 10.0.102 10.0.102 10.0.102 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.102 10.0.102 10.0.102 - 10.0.102-servicing.25608.105 + 10.0.102-servicing.25609.106 10.0.102 - 10.0.102-servicing.25608.105 + 10.0.102-servicing.25609.106 10.0.102 10.0.102 - 10.0.102-servicing.25608.105 - 18.0.1-release-25608-105 - 18.0.1-release-25608-105 + 10.0.102-servicing.25609.106 + 18.0.1-release-25609-106 + 18.0.1-release-25609-106 3.2.2 10.0.2 - 10.0.2-servicing.25608.105 + 10.0.2-servicing.25609.106 10.0.2 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 - 7.0.0-rc.10905 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 + 7.0.0-rc.11006 10.0.2 2.0.2 10.0.2 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d468b54e279f..abb4f142872d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 - + https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 279bb6e979485785576d9279b6582cf7006c6f91 + 094213b024d6b8fe6dd2c125408e6f89e21859a8 diff --git a/global.json b/global.json index 7fa138d99a4f..35e56b868f18 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25608.105", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25608.105", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25609.106", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25609.106", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 298399878dd0e6d82fb78cba6a6d68a46cca0fd2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 10 Dec 2025 02:04:00 +0000 Subject: [PATCH 328/392] Update dependencies from https://github.com/microsoft/testfx build 20251209.4 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25604.3 -> To Version 2.1.0-preview.25609.4 MSTest From Version 4.1.0-preview.25604.3 -> To Version 4.1.0-preview.25609.4 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index efd2a90988c8..2fd084fb262d 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25605.6 - 4.1.0-preview.25605.6 + 2.1.0-preview.25609.4 + 4.1.0-preview.25609.4 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ec43c18f7447..9444f706bbd8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/microsoft/testfx - 482dabb77a17c2f17caa88b9548e9e777897621f + 5cade5e9b039a830e0975771942605ec85815189 - + https://github.com/microsoft/testfx - 482dabb77a17c2f17caa88b9548e9e777897621f + 5cade5e9b039a830e0975771942605ec85815189 https://github.com/dotnet/dotnet From 841486f05b2e69f2074c3ce7c7d74ede8d0e253e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 10 Dec 2025 02:05:01 +0000 Subject: [PATCH 329/392] Update dependencies from https://github.com/microsoft/testfx build 20251209.4 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25609.4 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25609.4 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 2531b49f25a5..d65dc510ad64 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -144,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25605.6 - 4.1.0-preview.25605.6 + 2.1.0-preview.25609.4 + 4.1.0-preview.25609.4 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c9560e89e999..dcf76b4c97f0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - 482dabb77a17c2f17caa88b9548e9e777897621f + 5cade5e9b039a830e0975771942605ec85815189 - + https://github.com/microsoft/testfx - 482dabb77a17c2f17caa88b9548e9e777897621f + 5cade5e9b039a830e0975771942605ec85815189 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From d63fc0e0b8a07d9d49b8c1381bb1da49c1f8a02d Mon Sep 17 00:00:00 2001 From: Noah Gilson Date: Wed, 10 Dec 2025 15:55:08 -0800 Subject: [PATCH 330/392] manually add back missing dependencies incorrectly removed by arcade --- eng/Version.Details.props | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index d65dc510ad64..5dfe1af485ba 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -89,6 +89,8 @@ This file should be imported by eng/Versions.props 2.2.0-beta.25523.111 10.0.0 10.0.0 + 10.0.2-servicing.25601.110 + 10.0.2-servicing.25601.110 10.0.0 10.0.0 10.0.0 From baa9cbb3e54fec460aab63f5865cc17e1b2e2f72 Mon Sep 17 00:00:00 2001 From: Noah Gilson Date: Wed, 10 Dec 2025 16:04:01 -0800 Subject: [PATCH 331/392] add back hot reload pinned version --- eng/Version.Details.props | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 5dfe1af485ba..16bad812928b 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -16,6 +16,8 @@ This file should be imported by eng/Versions.props 5.3.0-1.25568.105 5.3.0-1.25568.105 5.3.0-1.25568.105 + 5.3.0-1.25568.105 + 5.3.0-1.25568.105 10.0.0-preview.25568.105 5.3.0-1.25568.105 5.3.0-1.25568.105 From 353c368d648feeb180bdc22facb0e46c1b615eae Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 11 Dec 2025 02:01:54 +0000 Subject: [PATCH 332/392] Update dependencies from https://github.com/dotnet/dotnet build 294121 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.HostModel, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.Platforms, Microsoft.WindowsDesktop.App.Internal (Version 10.0.2-servicing.25609.106 -> 10.0.2-servicing.25609.109) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.2 -> 10.0.2) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.25609.106 -> 10.0.0-preview.25609.109) Microsoft.Build (Version 18.0.6 -> 18.0.6) Microsoft.Build.Localization (Version 18.0.6-servicing-25609-106 -> 18.0.6-servicing-25609-109) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.0-rc.11006 -> 7.0.0-rc.11009) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.102 -> 10.0.102) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.25609.106 -> 5.0.0-2.25609.109) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.25609.106 -> 2.0.0-preview.1.25609.109) Microsoft.DiaSymReader (Version 2.2.2 -> 2.2.2) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.25609.106 -> 10.0.0-beta.25609.109) Microsoft.FSharp.Compiler (Version 14.0.102-servicing.25609.106 -> 14.0.102-servicing.25609.109) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.1-release-25609-106 -> 18.0.1-release-25609-109) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.102-servicing.25609.106 -> 10.0.102-servicing.25609.109) Microsoft.Web.Xdt (Version 3.2.2 -> 3.2.2) System.CommandLine (Version 2.0.2 -> 2.0.2) --- NuGet.config | 2 +- eng/Version.Details.props | 126 ++++++------ eng/Version.Details.xml | 392 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 262 insertions(+), 262 deletions(-) diff --git a/NuGet.config b/NuGet.config index 55f6d1b4e282..89574e9cd2ab 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 59f2887fd727..550cf04b7e82 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.2-servicing.25609.106 - 10.0.2-servicing.25609.106 - 10.0.2-servicing.25609.106 - 10.0.2-servicing.25609.106 + 10.0.2-servicing.25609.109 + 10.0.2-servicing.25609.109 + 10.0.2-servicing.25609.109 + 10.0.2-servicing.25609.109 10.0.2 - 10.0.2-servicing.25609.106 + 10.0.2-servicing.25609.109 10.0.2 10.0.2 10.0.2 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25609.106 + 10.0.2-servicing.25609.109 10.0.2 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25609.106 + 10.0.2-servicing.25609.109 10.0.2 - 10.0.2-servicing.25609.106 - 10.0.2-servicing.25609.106 - 10.0.0-preview.25609.106 + 10.0.2-servicing.25609.109 + 10.0.2-servicing.25609.109 + 10.0.0-preview.25609.109 10.0.2 10.0.2 18.0.6 - 18.0.6-servicing-25609-106 - 7.0.0-rc.11006 + 18.0.6-servicing-25609-109 + 7.0.0-rc.11009 10.0.102 - 5.0.0-2.25609.106 - 5.0.0-2.25609.106 - 5.0.0-2.25609.106 - 5.0.0-2.25609.106 - 5.0.0-2.25609.106 - 5.0.0-2.25609.106 - 5.0.0-2.25609.106 - 10.0.0-preview.25609.106 - 5.0.0-2.25609.106 - 5.0.0-2.25609.106 - 2.0.0-preview.1.25609.106 + 5.0.0-2.25609.109 + 5.0.0-2.25609.109 + 5.0.0-2.25609.109 + 5.0.0-2.25609.109 + 5.0.0-2.25609.109 + 5.0.0-2.25609.109 + 5.0.0-2.25609.109 + 10.0.0-preview.25609.109 + 5.0.0-2.25609.109 + 5.0.0-2.25609.109 + 2.0.0-preview.1.25609.109 2.2.2 - 10.0.0-beta.25609.106 - 10.0.0-beta.25609.106 - 10.0.0-beta.25609.106 - 10.0.0-beta.25609.106 - 10.0.0-beta.25609.106 - 10.0.0-beta.25609.106 + 10.0.0-beta.25609.109 + 10.0.0-beta.25609.109 + 10.0.0-beta.25609.109 + 10.0.0-beta.25609.109 + 10.0.0-beta.25609.109 + 10.0.0-beta.25609.109 10.0.2 10.0.2 - 10.0.2-servicing.25609.106 - 10.0.2-servicing.25609.106 - 10.0.0-beta.25609.106 - 10.0.0-beta.25609.106 + 10.0.2-servicing.25609.109 + 10.0.2-servicing.25609.109 + 10.0.0-beta.25609.109 + 10.0.0-beta.25609.109 10.0.2 10.0.2 10.0.2 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 14.0.102-servicing.25609.106 + 14.0.102-servicing.25609.109 10.0.2 - 5.0.0-2.25609.106 - 5.0.0-2.25609.106 - 10.0.2-servicing.25609.106 + 5.0.0-2.25609.109 + 5.0.0-2.25609.109 + 10.0.2-servicing.25609.109 10.0.2 10.0.2 10.0.0-preview.7.25377.103 - 10.0.0-preview.25609.106 - 10.0.2-servicing.25609.106 - 18.0.1-release-25609-106 + 10.0.0-preview.25609.109 + 10.0.2-servicing.25609.109 + 18.0.1-release-25609-109 10.0.2 - 10.0.2-servicing.25609.106 + 10.0.2-servicing.25609.109 10.0.102 10.0.102 10.0.102 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.102 10.0.102 10.0.102 - 10.0.102-servicing.25609.106 + 10.0.102-servicing.25609.109 10.0.102 - 10.0.102-servicing.25609.106 + 10.0.102-servicing.25609.109 10.0.102 10.0.102 - 10.0.102-servicing.25609.106 - 18.0.1-release-25609-106 - 18.0.1-release-25609-106 + 10.0.102-servicing.25609.109 + 18.0.1-release-25609-109 + 18.0.1-release-25609-109 3.2.2 10.0.2 - 10.0.2-servicing.25609.106 + 10.0.2-servicing.25609.109 10.0.2 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 - 7.0.0-rc.11006 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 + 7.0.0-rc.11009 10.0.2 2.0.2 10.0.2 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index abb4f142872d..2e27c722d317 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 094213b024d6b8fe6dd2c125408e6f89e21859a8 + 32aba8526ca0c037d185329fe779e8a288e986fc diff --git a/global.json b/global.json index 35e56b868f18..71bfb4972cbf 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25609.106", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25609.106", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25609.109", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25609.109", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 471155d3cfb8ee546e23674c3971d6079accfbec Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 11 Dec 2025 02:02:18 +0000 Subject: [PATCH 333/392] Update dependencies from https://github.com/microsoft/testfx build 20251210.8 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25604.3 -> To Version 2.1.0-preview.25610.8 MSTest From Version 4.1.0-preview.25604.3 -> To Version 4.1.0-preview.25610.8 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 2fd084fb262d..c06829e441c7 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25609.4 - 4.1.0-preview.25609.4 + 2.1.0-preview.25610.8 + 4.1.0-preview.25610.8 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9444f706bbd8..735c38475ce9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 279bb6e979485785576d9279b6582cf7006c6f91 - + https://github.com/microsoft/testfx - 5cade5e9b039a830e0975771942605ec85815189 + 21f3c7b010f48874bc9233404583e8b5ab61f6e5 - + https://github.com/microsoft/testfx - 5cade5e9b039a830e0975771942605ec85815189 + 21f3c7b010f48874bc9233404583e8b5ab61f6e5 https://github.com/dotnet/dotnet From fe3ff80def90eff7e67e0b0094b9a634ebcdc3cc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 11 Dec 2025 02:02:42 +0000 Subject: [PATCH 334/392] Update dependencies from https://github.com/microsoft/testfx build 20251210.8 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25610.8 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25610.8 --- eng/Version.Details.props | 8 ++------ eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 16bad812928b..3acabeb369bf 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -16,8 +16,6 @@ This file should be imported by eng/Versions.props 5.3.0-1.25568.105 5.3.0-1.25568.105 5.3.0-1.25568.105 - 5.3.0-1.25568.105 - 5.3.0-1.25568.105 10.0.0-preview.25568.105 5.3.0-1.25568.105 5.3.0-1.25568.105 @@ -91,8 +89,6 @@ This file should be imported by eng/Versions.props 2.2.0-beta.25523.111 10.0.0 10.0.0 - 10.0.2-servicing.25601.110 - 10.0.2-servicing.25601.110 10.0.0 10.0.0 10.0.0 @@ -148,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25609.4 - 4.1.0-preview.25609.4 + 2.1.0-preview.25610.8 + 4.1.0-preview.25610.8 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index dcf76b4c97f0..31029101c113 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - 5cade5e9b039a830e0975771942605ec85815189 + 21f3c7b010f48874bc9233404583e8b5ab61f6e5 - + https://github.com/microsoft/testfx - 5cade5e9b039a830e0975771942605ec85815189 + 21f3c7b010f48874bc9233404583e8b5ab61f6e5 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From b964b26655a333271b32c75464b16d3fe5a74af5 Mon Sep 17 00:00:00 2001 From: "Donna Chen (BEYONDSOFT CONSULTING INC)" Date: Thu, 11 Dec 2025 15:31:24 +0800 Subject: [PATCH 335/392] Add back missing dependencies incorrectly removed by arcade and update HotReload version --- eng/Version.Details.props | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 3acabeb369bf..36e24a0be8a8 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -89,6 +89,8 @@ This file should be imported by eng/Versions.props 2.2.0-beta.25523.111 10.0.0 10.0.0 + 10.0.2-servicing.25601.110 + 10.0.2-servicing.25601.110 10.0.0 10.0.0 10.0.0 @@ -139,8 +141,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 5.3.0-2.25560.14 - 5.3.0-2.25560.14 + 5.3.0-1.25568.105 + 5.3.0-1.25568.105 2.0.0-preview.1.25527.1 From 5c2e6d9b0ab0b30bd9057e2063a2dc0ca5aa7606 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 12 Dec 2025 02:01:57 +0000 Subject: [PATCH 336/392] Backflow from https://github.com/dotnet/dotnet / 11af6ee build 294323 [[ commit created by automation ]] --- eng/Signing.props | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eng/Signing.props b/eng/Signing.props index 872602d12f5c..c6ba0d55832b 100644 --- a/eng/Signing.props +++ b/eng/Signing.props @@ -64,6 +64,7 @@ + @@ -81,7 +82,7 @@ - + From fa42365caae92105681b33fcc8f6e74a76f6dc94 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 12 Dec 2025 02:02:17 +0000 Subject: [PATCH 337/392] Update dependencies from https://github.com/dotnet/dotnet build 294323 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.HostModel, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.Platforms, Microsoft.WindowsDesktop.App.Internal (Version 10.0.2-servicing.25609.109 -> 10.0.2-servicing.25611.101) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.2 -> 10.0.2) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.25609.109 -> 10.0.0-preview.25611.101) Microsoft.Build (Version 18.0.6 -> 18.0.7) Microsoft.Build.Localization (Version 18.0.6-servicing-25609-109 -> 18.0.7-servicing-25611-101) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.0-rc.11009 -> 7.0.2-rc.11201) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.102 -> 10.0.102) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.25609.109 -> 5.0.0-2.25611.101) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.25609.109 -> 2.0.0-preview.1.25611.101) Microsoft.DiaSymReader (Version 2.2.2 -> 2.2.2) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.25609.109 -> 10.0.0-beta.25611.101) Microsoft.FSharp.Compiler (Version 14.0.102-servicing.25609.109 -> 14.0.102-servicing.25611.101) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.1-release-25609-109 -> 18.0.1-release-25611-101) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.102-servicing.25609.109 -> 10.0.102-servicing.25611.101) Microsoft.Web.Xdt (Version 3.2.2 -> 3.2.2) System.CommandLine (Version 2.0.2 -> 2.0.2) --- NuGet.config | 2 +- eng/Version.Details.props | 128 ++++++------- eng/Version.Details.xml | 394 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 264 insertions(+), 264 deletions(-) diff --git a/NuGet.config b/NuGet.config index 89574e9cd2ab..472c435c24cf 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 550cf04b7e82..83a56ff38265 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.2-servicing.25609.109 - 10.0.2-servicing.25609.109 - 10.0.2-servicing.25609.109 - 10.0.2-servicing.25609.109 + 10.0.2-servicing.25611.101 + 10.0.2-servicing.25611.101 + 10.0.2-servicing.25611.101 + 10.0.2-servicing.25611.101 10.0.2 - 10.0.2-servicing.25609.109 + 10.0.2-servicing.25611.101 10.0.2 10.0.2 10.0.2 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25609.109 + 10.0.2-servicing.25611.101 10.0.2 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25609.109 + 10.0.2-servicing.25611.101 10.0.2 - 10.0.2-servicing.25609.109 - 10.0.2-servicing.25609.109 - 10.0.0-preview.25609.109 + 10.0.2-servicing.25611.101 + 10.0.2-servicing.25611.101 + 10.0.0-preview.25611.101 10.0.2 10.0.2 - 18.0.6 - 18.0.6-servicing-25609-109 - 7.0.0-rc.11009 + 18.0.7 + 18.0.7-servicing-25611-101 + 7.0.2-rc.11201 10.0.102 - 5.0.0-2.25609.109 - 5.0.0-2.25609.109 - 5.0.0-2.25609.109 - 5.0.0-2.25609.109 - 5.0.0-2.25609.109 - 5.0.0-2.25609.109 - 5.0.0-2.25609.109 - 10.0.0-preview.25609.109 - 5.0.0-2.25609.109 - 5.0.0-2.25609.109 - 2.0.0-preview.1.25609.109 + 5.0.0-2.25611.101 + 5.0.0-2.25611.101 + 5.0.0-2.25611.101 + 5.0.0-2.25611.101 + 5.0.0-2.25611.101 + 5.0.0-2.25611.101 + 5.0.0-2.25611.101 + 10.0.0-preview.25611.101 + 5.0.0-2.25611.101 + 5.0.0-2.25611.101 + 2.0.0-preview.1.25611.101 2.2.2 - 10.0.0-beta.25609.109 - 10.0.0-beta.25609.109 - 10.0.0-beta.25609.109 - 10.0.0-beta.25609.109 - 10.0.0-beta.25609.109 - 10.0.0-beta.25609.109 + 10.0.0-beta.25611.101 + 10.0.0-beta.25611.101 + 10.0.0-beta.25611.101 + 10.0.0-beta.25611.101 + 10.0.0-beta.25611.101 + 10.0.0-beta.25611.101 10.0.2 10.0.2 - 10.0.2-servicing.25609.109 - 10.0.2-servicing.25609.109 - 10.0.0-beta.25609.109 - 10.0.0-beta.25609.109 + 10.0.2-servicing.25611.101 + 10.0.2-servicing.25611.101 + 10.0.0-beta.25611.101 + 10.0.0-beta.25611.101 10.0.2 10.0.2 10.0.2 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 14.0.102-servicing.25609.109 + 14.0.102-servicing.25611.101 10.0.2 - 5.0.0-2.25609.109 - 5.0.0-2.25609.109 - 10.0.2-servicing.25609.109 + 5.0.0-2.25611.101 + 5.0.0-2.25611.101 + 10.0.2-servicing.25611.101 10.0.2 10.0.2 10.0.0-preview.7.25377.103 - 10.0.0-preview.25609.109 - 10.0.2-servicing.25609.109 - 18.0.1-release-25609-109 + 10.0.0-preview.25611.101 + 10.0.2-servicing.25611.101 + 18.0.1-release-25611-101 10.0.2 - 10.0.2-servicing.25609.109 + 10.0.2-servicing.25611.101 10.0.102 10.0.102 10.0.102 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.102 10.0.102 10.0.102 - 10.0.102-servicing.25609.109 + 10.0.102-servicing.25611.101 10.0.102 - 10.0.102-servicing.25609.109 + 10.0.102-servicing.25611.101 10.0.102 10.0.102 - 10.0.102-servicing.25609.109 - 18.0.1-release-25609-109 - 18.0.1-release-25609-109 + 10.0.102-servicing.25611.101 + 18.0.1-release-25611-101 + 18.0.1-release-25611-101 3.2.2 10.0.2 - 10.0.2-servicing.25609.109 + 10.0.2-servicing.25611.101 10.0.2 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 - 7.0.0-rc.11009 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 + 7.0.2-rc.11201 10.0.2 2.0.2 10.0.2 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2e27c722d317..4730f37785bc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e - + https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 32aba8526ca0c037d185329fe779e8a288e986fc + 11af6ee5adad08cf5743e1578eea8c324d482f5e diff --git a/global.json b/global.json index 71bfb4972cbf..b6e5caca1947 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25609.109", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25609.109", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25611.101", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25611.101", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 8e3151fc7e73c6f4652ba150de4d80a9929dca4f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 12 Dec 2025 02:03:52 +0000 Subject: [PATCH 338/392] Update dependencies from https://github.com/microsoft/testfx build 20251211.7 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25604.3 -> To Version 2.1.0-preview.25611.7 MSTest From Version 4.1.0-preview.25604.3 -> To Version 4.1.0-preview.25611.7 --- NuGet.config | 1 + eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/NuGet.config b/NuGet.config index 89574e9cd2ab..035d96ea619e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -5,6 +5,7 @@ + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 13af0679c3fb..57ccc5c9b297 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25610.8 - 4.1.0-preview.25610.8 + 2.1.0-preview.25611.7 + 4.1.0-preview.25611.7 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ffcb7824d5de..109b9620ab15 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/microsoft/testfx - 21f3c7b010f48874bc9233404583e8b5ab61f6e5 + 58533bde1a2a3c60c7b13ded461f603a5cc490c3 - + https://github.com/microsoft/testfx - 21f3c7b010f48874bc9233404583e8b5ab61f6e5 + 58533bde1a2a3c60c7b13ded461f603a5cc490c3 https://github.com/dotnet/dotnet From 165521f8b9082f6b320c1dcab072d1b3329a6b68 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 12 Dec 2025 02:04:38 +0000 Subject: [PATCH 339/392] Update dependencies from https://github.com/microsoft/testfx build 20251211.7 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25611.7 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25611.7 --- eng/Version.Details.props | 10 ++++------ eng/Version.Details.xml | 8 ++++---- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 36e24a0be8a8..1306b48d8bee 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -89,8 +89,6 @@ This file should be imported by eng/Versions.props 2.2.0-beta.25523.111 10.0.0 10.0.0 - 10.0.2-servicing.25601.110 - 10.0.2-servicing.25601.110 10.0.0 10.0.0 10.0.0 @@ -141,13 +139,13 @@ This file should be imported by eng/Versions.props 2.1.0 - 5.3.0-1.25568.105 - 5.3.0-1.25568.105 + 5.3.0-2.25560.14 + 5.3.0-2.25560.14 2.0.0-preview.1.25527.1 - 2.1.0-preview.25610.8 - 4.1.0-preview.25610.8 + 2.1.0-preview.25611.7 + 4.1.0-preview.25611.7 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 31029101c113..7c808e8c731d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - 21f3c7b010f48874bc9233404583e8b5ab61f6e5 + 58533bde1a2a3c60c7b13ded461f603a5cc490c3 - + https://github.com/microsoft/testfx - 21f3c7b010f48874bc9233404583e8b5ab61f6e5 + 58533bde1a2a3c60c7b13ded461f603a5cc490c3 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From fa0e935e7a4d7c348c020b07e626a4d67bd36e4b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 13 Dec 2025 02:01:52 +0000 Subject: [PATCH 340/392] Update dependencies from https://github.com/dotnet/dotnet build 294428 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.WindowsDesktop.App.Internal (Version 10.0.2-servicing.25611.101 -> 10.0.2-servicing.25611.112) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.WindowsDesktop.App.Ref (Version 10.0.2 -> 10.0.2) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.25611.101 -> 10.0.0-preview.25611.112) Microsoft.Bcl.AsyncInterfaces, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.NET.ILLink.Tasks, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.2 -> 10.0.1) Microsoft.Build (Version 18.0.7 -> 18.0.7) Microsoft.Build.Localization (Version 18.0.7-servicing-25611-101 -> 18.0.7-servicing-25611-112) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.2-rc.11201 -> 7.0.2-rc.11212) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.102 -> 10.0.102) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.25611.101 -> 5.0.0-2.25611.112) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.25611.101 -> 2.0.0-preview.1.25611.112) Microsoft.DiaSymReader (Version 2.2.2 -> 2.2.2) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.25611.101 -> 10.0.0-beta.25611.112) Microsoft.FSharp.Compiler (Version 14.0.102-servicing.25611.101 -> 14.0.102-servicing.25611.112) Microsoft.NET.HostModel, Microsoft.NETCore.Platforms (Version 10.0.2-servicing.25611.101 -> 10.0.1-servicing.25611.112) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.1-release-25611-101 -> 18.0.1-release-25611-112) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.102-servicing.25611.101 -> 10.0.102-servicing.25611.112) Microsoft.Web.Xdt (Version 3.2.2 -> 3.2.2) System.CommandLine (Version 2.0.2 -> 2.0.2) --- NuGet.config | 2 +- eng/Version.Details.props | 190 ++++---- eng/Version.Details.xml | 456 +++++++++---------- eng/common/internal-feed-operations.ps1 | 2 +- eng/common/post-build/nuget-verification.ps1 | 2 +- eng/common/tools.ps1 | 6 +- global.json | 4 +- 7 files changed, 331 insertions(+), 331 deletions(-) diff --git a/NuGet.config b/NuGet.config index 472c435c24cf..87b6657a1da6 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 83a56ff38265..95ccccef3cba 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.2-servicing.25611.101 - 10.0.2-servicing.25611.101 - 10.0.2-servicing.25611.101 - 10.0.2-servicing.25611.101 + 10.0.2-servicing.25611.112 + 10.0.2-servicing.25611.112 + 10.0.2-servicing.25611.112 + 10.0.2-servicing.25611.112 10.0.2 - 10.0.2-servicing.25611.101 + 10.0.2-servicing.25611.112 10.0.2 10.0.2 10.0.2 @@ -19,68 +19,68 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25611.101 + 10.0.2-servicing.25611.112 10.0.2 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25611.101 + 10.0.2-servicing.25611.112 10.0.2 - 10.0.2-servicing.25611.101 - 10.0.2-servicing.25611.101 - 10.0.0-preview.25611.101 + 10.0.2-servicing.25611.112 + 10.0.2-servicing.25611.112 + 10.0.0-preview.25611.112 10.0.2 - 10.0.2 + 10.0.1 18.0.7 - 18.0.7-servicing-25611-101 - 7.0.2-rc.11201 + 18.0.7-servicing-25611-112 + 7.0.2-rc.11212 10.0.102 - 5.0.0-2.25611.101 - 5.0.0-2.25611.101 - 5.0.0-2.25611.101 - 5.0.0-2.25611.101 - 5.0.0-2.25611.101 - 5.0.0-2.25611.101 - 5.0.0-2.25611.101 - 10.0.0-preview.25611.101 - 5.0.0-2.25611.101 - 5.0.0-2.25611.101 - 2.0.0-preview.1.25611.101 + 5.0.0-2.25611.112 + 5.0.0-2.25611.112 + 5.0.0-2.25611.112 + 5.0.0-2.25611.112 + 5.0.0-2.25611.112 + 5.0.0-2.25611.112 + 5.0.0-2.25611.112 + 10.0.0-preview.25611.112 + 5.0.0-2.25611.112 + 5.0.0-2.25611.112 + 2.0.0-preview.1.25611.112 2.2.2 - 10.0.0-beta.25611.101 - 10.0.0-beta.25611.101 - 10.0.0-beta.25611.101 - 10.0.0-beta.25611.101 - 10.0.0-beta.25611.101 - 10.0.0-beta.25611.101 + 10.0.0-beta.25611.112 + 10.0.0-beta.25611.112 + 10.0.0-beta.25611.112 + 10.0.0-beta.25611.112 + 10.0.0-beta.25611.112 + 10.0.0-beta.25611.112 10.0.2 10.0.2 - 10.0.2-servicing.25611.101 - 10.0.2-servicing.25611.101 - 10.0.0-beta.25611.101 - 10.0.0-beta.25611.101 - 10.0.2 - 10.0.2 - 10.0.2 + 10.0.2-servicing.25611.112 + 10.0.2-servicing.25611.112 + 10.0.0-beta.25611.112 + 10.0.0-beta.25611.112 + 10.0.1 + 10.0.1 + 10.0.1 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 10.0.2 - 14.0.102-servicing.25611.101 + 14.0.102-servicing.25611.112 10.0.2 - 5.0.0-2.25611.101 - 5.0.0-2.25611.101 - 10.0.2-servicing.25611.101 - 10.0.2 + 5.0.0-2.25611.112 + 5.0.0-2.25611.112 + 10.0.1-servicing.25611.112 + 10.0.1 10.0.2 10.0.0-preview.7.25377.103 - 10.0.0-preview.25611.101 - 10.0.2-servicing.25611.101 - 18.0.1-release-25611-101 - 10.0.2 - 10.0.2-servicing.25611.101 + 10.0.0-preview.25611.112 + 10.0.2-servicing.25611.112 + 18.0.1-release-25611-112 + 10.0.1 + 10.0.1-servicing.25611.112 10.0.102 10.0.102 10.0.102 @@ -89,56 +89,56 @@ This file should be imported by eng/Versions.props 10.0.102 10.0.102 10.0.102 - 10.0.102-servicing.25611.101 + 10.0.102-servicing.25611.112 10.0.102 - 10.0.102-servicing.25611.101 + 10.0.102-servicing.25611.112 10.0.102 10.0.102 - 10.0.102-servicing.25611.101 - 18.0.1-release-25611-101 - 18.0.1-release-25611-101 + 10.0.102-servicing.25611.112 + 18.0.1-release-25611-112 + 18.0.1-release-25611-112 3.2.2 - 10.0.2 - 10.0.2-servicing.25611.101 + 10.0.1 + 10.0.2-servicing.25611.112 10.0.2 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 7.0.2-rc.11201 - 10.0.2 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 7.0.2-rc.11212 + 10.0.1 2.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 2.1.0 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4730f37785bc..0dd6f1070d90 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f https://github.com/microsoft/testfx @@ -569,9 +569,9 @@ https://github.com/microsoft/testfx aaa16e9321c4344b439324378ddb23b60e1d3461 - + https://github.com/dotnet/dotnet - 11af6ee5adad08cf5743e1578eea8c324d482f5e + e9995e95c2e1e9ec6d050f49287d22578dbc156f diff --git a/eng/common/internal-feed-operations.ps1 b/eng/common/internal-feed-operations.ps1 index 92b77347d990..c282d3ae403a 100644 --- a/eng/common/internal-feed-operations.ps1 +++ b/eng/common/internal-feed-operations.ps1 @@ -26,7 +26,7 @@ function SetupCredProvider { $url = 'https://raw.githubusercontent.com/microsoft/artifacts-credprovider/master/helpers/installcredprovider.ps1' Write-Host "Writing the contents of 'installcredprovider.ps1' locally..." - Invoke-WebRequest $url -OutFile installcredprovider.ps1 + Invoke-WebRequest $url -UseBasicParsing -OutFile installcredprovider.ps1 Write-Host 'Installing plugin...' .\installcredprovider.ps1 -Force diff --git a/eng/common/post-build/nuget-verification.ps1 b/eng/common/post-build/nuget-verification.ps1 index ac5c69ffcac5..eea88e653c91 100644 --- a/eng/common/post-build/nuget-verification.ps1 +++ b/eng/common/post-build/nuget-verification.ps1 @@ -65,7 +65,7 @@ if ($NuGetExePath) { Write-Host "Downloading nuget.exe from $nugetExeUrl..." $ProgressPreference = 'SilentlyContinue' try { - Invoke-WebRequest $nugetExeUrl -OutFile $downloadedNuGetExe + Invoke-WebRequest $nugetExeUrl -UseBasicParsing -OutFile $downloadedNuGetExe $ProgressPreference = 'Continue' } catch { $ProgressPreference = 'Continue' diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 578705ee4dbd..bef4affa4a41 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -277,7 +277,7 @@ function GetDotNetInstallScript([string] $dotnetRoot) { Retry({ Write-Host "GET $uri" - Invoke-WebRequest $uri -OutFile $installScript + Invoke-WebRequest $uri -UseBasicParsing -OutFile $installScript }) } @@ -510,7 +510,7 @@ function InitializeXCopyMSBuild([string]$packageVersion, [bool]$install) { Write-Host "Downloading $packageName $packageVersion" $ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit Retry({ - Invoke-WebRequest "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/flat2/$packageName/$packageVersion/$packageName.$packageVersion.nupkg" -OutFile $packagePath + Invoke-WebRequest "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/flat2/$packageName/$packageVersion/$packageName.$packageVersion.nupkg" -UseBasicParsing -OutFile $packagePath }) if (!(Test-Path $packagePath)) { @@ -556,7 +556,7 @@ function LocateVisualStudio([object]$vsRequirements = $null){ Write-Host "Downloading vswhere $vswhereVersion" $ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit Retry({ - Invoke-WebRequest "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/vswhere/$vswhereVersion/vswhere.exe" -OutFile $vswhereExe + Invoke-WebRequest "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/vswhere/$vswhereVersion/vswhere.exe" -UseBasicParsing -OutFile $vswhereExe }) } diff --git a/global.json b/global.json index b6e5caca1947..d6739568d06d 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25611.101", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25611.101", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25611.112", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25611.112", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From d842781aa42ff3a55a84ccbc47de2dbe5a49621b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 13 Dec 2025 02:03:14 +0000 Subject: [PATCH 341/392] Update dependencies from https://github.com/microsoft/testfx build 20251212.5 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25604.3 -> To Version 2.1.0-preview.25612.5 MSTest From Version 4.1.0-preview.25604.3 -> To Version 4.1.0-preview.25612.5 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 57ccc5c9b297..4a144bb17531 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25611.7 - 4.1.0-preview.25611.7 + 2.1.0-preview.25612.5 + 4.1.0-preview.25612.5 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 109b9620ab15..f731d6a5845a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/microsoft/testfx - 58533bde1a2a3c60c7b13ded461f603a5cc490c3 + 46955f25afa9a03f7a5748576e5266d3428182f2 - + https://github.com/microsoft/testfx - 58533bde1a2a3c60c7b13ded461f603a5cc490c3 + 46955f25afa9a03f7a5748576e5266d3428182f2 https://github.com/dotnet/dotnet From f9b9015638c910fd3d3bef42f051415137892c6e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 13 Dec 2025 02:03:35 +0000 Subject: [PATCH 342/392] Update dependencies from https://github.com/microsoft/testfx build 20251212.5 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25612.5 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25612.5 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 1306b48d8bee..8df412d82f7e 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -144,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25611.7 - 4.1.0-preview.25611.7 + 2.1.0-preview.25612.5 + 4.1.0-preview.25612.5 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7c808e8c731d..66ed7417846d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - 58533bde1a2a3c60c7b13ded461f603a5cc490c3 + 46955f25afa9a03f7a5748576e5266d3428182f2 - + https://github.com/microsoft/testfx - 58533bde1a2a3c60c7b13ded461f603a5cc490c3 + 46955f25afa9a03f7a5748576e5266d3428182f2 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 3e5b171ba5e7666c75ce2b73bc490279d11c73ac Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 14 Dec 2025 02:02:00 +0000 Subject: [PATCH 343/392] Update dependencies from https://github.com/dotnet/dotnet build 294580 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.WindowsDesktop.App.Internal (Version 10.0.2-servicing.25611.112 -> 10.0.2-servicing.25612.111) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.WindowsDesktop.App.Ref (Version 10.0.2 -> 10.0.2) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.25611.112 -> 10.0.0-preview.25612.111) Microsoft.Bcl.AsyncInterfaces, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.NET.ILLink.Tasks, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.1 -> 10.0.2) Microsoft.Build (Version 18.0.7 -> 18.0.7) Microsoft.Build.Localization (Version 18.0.7-servicing-25611-112 -> 18.0.7-servicing-25612-111) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.2-rc.11212 -> 7.0.2-rc.11311) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.102 -> 10.0.102) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.25611.112 -> 5.0.0-2.25612.111) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.25611.112 -> 2.0.0-preview.1.25612.111) Microsoft.DiaSymReader (Version 2.2.2 -> 2.2.2) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.25611.112 -> 10.0.0-beta.25612.111) Microsoft.FSharp.Compiler (Version 14.0.102-servicing.25611.112 -> 14.0.102-servicing.25612.111) Microsoft.NET.HostModel, Microsoft.NETCore.Platforms (Version 10.0.1-servicing.25611.112 -> 10.0.2-servicing.25612.111) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.1-release-25611-112 -> 18.0.1-release-25612-111) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.102-servicing.25611.112 -> 10.0.102-servicing.25612.111) Microsoft.Web.Xdt (Version 3.2.2 -> 3.2.2) System.CommandLine (Version 2.0.2 -> 2.0.2) --- NuGet.config | 2 +- eng/Version.Details.props | 190 ++++++++-------- eng/Version.Details.xml | 456 +++++++++++++++++++------------------- global.json | 6 +- 4 files changed, 327 insertions(+), 327 deletions(-) diff --git a/NuGet.config b/NuGet.config index 87b6657a1da6..0383b49cd57b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 95ccccef3cba..5c9ec4eba6cf 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.2-servicing.25611.112 - 10.0.2-servicing.25611.112 - 10.0.2-servicing.25611.112 - 10.0.2-servicing.25611.112 + 10.0.2-servicing.25612.111 + 10.0.2-servicing.25612.111 + 10.0.2-servicing.25612.111 + 10.0.2-servicing.25612.111 10.0.2 - 10.0.2-servicing.25611.112 + 10.0.2-servicing.25612.111 10.0.2 10.0.2 10.0.2 @@ -19,68 +19,68 @@ This file should be imported by eng/Versions.props 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25611.112 + 10.0.2-servicing.25612.111 10.0.2 10.0.2 10.0.2 10.0.2 - 10.0.2-servicing.25611.112 + 10.0.2-servicing.25612.111 10.0.2 - 10.0.2-servicing.25611.112 - 10.0.2-servicing.25611.112 - 10.0.0-preview.25611.112 + 10.0.2-servicing.25612.111 + 10.0.2-servicing.25612.111 + 10.0.0-preview.25612.111 10.0.2 - 10.0.1 + 10.0.2 18.0.7 - 18.0.7-servicing-25611-112 - 7.0.2-rc.11212 + 18.0.7-servicing-25612-111 + 7.0.2-rc.11311 10.0.102 - 5.0.0-2.25611.112 - 5.0.0-2.25611.112 - 5.0.0-2.25611.112 - 5.0.0-2.25611.112 - 5.0.0-2.25611.112 - 5.0.0-2.25611.112 - 5.0.0-2.25611.112 - 10.0.0-preview.25611.112 - 5.0.0-2.25611.112 - 5.0.0-2.25611.112 - 2.0.0-preview.1.25611.112 + 5.0.0-2.25612.111 + 5.0.0-2.25612.111 + 5.0.0-2.25612.111 + 5.0.0-2.25612.111 + 5.0.0-2.25612.111 + 5.0.0-2.25612.111 + 5.0.0-2.25612.111 + 10.0.0-preview.25612.111 + 5.0.0-2.25612.111 + 5.0.0-2.25612.111 + 2.0.0-preview.1.25612.111 2.2.2 - 10.0.0-beta.25611.112 - 10.0.0-beta.25611.112 - 10.0.0-beta.25611.112 - 10.0.0-beta.25611.112 - 10.0.0-beta.25611.112 - 10.0.0-beta.25611.112 + 10.0.0-beta.25612.111 + 10.0.0-beta.25612.111 + 10.0.0-beta.25612.111 + 10.0.0-beta.25612.111 + 10.0.0-beta.25612.111 + 10.0.0-beta.25612.111 10.0.2 10.0.2 - 10.0.2-servicing.25611.112 - 10.0.2-servicing.25611.112 - 10.0.0-beta.25611.112 - 10.0.0-beta.25611.112 - 10.0.1 - 10.0.1 - 10.0.1 + 10.0.2-servicing.25612.111 + 10.0.2-servicing.25612.111 + 10.0.0-beta.25612.111 + 10.0.0-beta.25612.111 + 10.0.2 + 10.0.2 + 10.0.2 10.0.2 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 10.0.2 - 14.0.102-servicing.25611.112 + 14.0.102-servicing.25612.111 10.0.2 - 5.0.0-2.25611.112 - 5.0.0-2.25611.112 - 10.0.1-servicing.25611.112 - 10.0.1 + 5.0.0-2.25612.111 + 5.0.0-2.25612.111 + 10.0.2-servicing.25612.111 + 10.0.2 10.0.2 10.0.0-preview.7.25377.103 - 10.0.0-preview.25611.112 - 10.0.2-servicing.25611.112 - 18.0.1-release-25611-112 - 10.0.1 - 10.0.1-servicing.25611.112 + 10.0.0-preview.25612.111 + 10.0.2-servicing.25612.111 + 18.0.1-release-25612-111 + 10.0.2 + 10.0.2-servicing.25612.111 10.0.102 10.0.102 10.0.102 @@ -89,56 +89,56 @@ This file should be imported by eng/Versions.props 10.0.102 10.0.102 10.0.102 - 10.0.102-servicing.25611.112 + 10.0.102-servicing.25612.111 10.0.102 - 10.0.102-servicing.25611.112 + 10.0.102-servicing.25612.111 10.0.102 10.0.102 - 10.0.102-servicing.25611.112 - 18.0.1-release-25611-112 - 18.0.1-release-25611-112 + 10.0.102-servicing.25612.111 + 18.0.1-release-25612-111 + 18.0.1-release-25612-111 3.2.2 - 10.0.1 - 10.0.2-servicing.25611.112 + 10.0.2 + 10.0.2-servicing.25612.111 10.0.2 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 7.0.2-rc.11212 - 10.0.1 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 7.0.2-rc.11311 + 10.0.2 2.0.2 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 - 10.0.1 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 + 10.0.2 2.1.0 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0dd6f1070d90..9b175fbe25d2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 https://github.com/microsoft/testfx @@ -569,9 +569,9 @@ https://github.com/microsoft/testfx aaa16e9321c4344b439324378ddb23b60e1d3461 - + https://github.com/dotnet/dotnet - e9995e95c2e1e9ec6d050f49287d22578dbc156f + 9441e5bb35fae9e956fdac4bd33ee537175e6d60 diff --git a/global.json b/global.json index d6739568d06d..7d6bc0e3ce19 100644 --- a/global.json +++ b/global.json @@ -7,7 +7,7 @@ "errorMessage": "The .NET SDK is not installed or is not configured correctly. Please run ./build to install the correct SDK version locally." }, "tools": { - "dotnet": "10.0.100", + "dotnet": "10.0.101", "runtimes": { "dotnet": [ "$(MicrosoftNETCorePlatformsPackageVersion)" @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25611.112", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25611.112", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25612.111", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25612.111", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From aa0543f0ff85e816fcd2044b5060a0f475755cec Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 14 Dec 2025 02:02:06 +0000 Subject: [PATCH 344/392] Update dependencies from https://github.com/microsoft/testfx build 20251212.7 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25604.3 -> To Version 2.1.0-preview.25612.7 MSTest From Version 4.1.0-preview.25604.3 -> To Version 4.1.0-preview.25612.7 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 4a144bb17531..52f4ef46be51 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25612.5 - 4.1.0-preview.25612.5 + 2.1.0-preview.25612.7 + 4.1.0-preview.25612.7 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f731d6a5845a..4967a9c7d91f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 32aba8526ca0c037d185329fe779e8a288e986fc - + https://github.com/microsoft/testfx - 46955f25afa9a03f7a5748576e5266d3428182f2 + 9e7fc6dc63e127bc18c17794a581776547655393 - + https://github.com/microsoft/testfx - 46955f25afa9a03f7a5748576e5266d3428182f2 + 9e7fc6dc63e127bc18c17794a581776547655393 https://github.com/dotnet/dotnet From 751beb2f511dd2107d9daf9e92aa70b948b30635 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 14 Dec 2025 02:02:39 +0000 Subject: [PATCH 345/392] Update dependencies from https://github.com/microsoft/testfx build 20251212.7 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25612.7 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25612.7 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 8df412d82f7e..72c6f52f0667 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -144,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25612.5 - 4.1.0-preview.25612.5 + 2.1.0-preview.25612.7 + 4.1.0-preview.25612.7 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 66ed7417846d..232847348a21 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - 46955f25afa9a03f7a5748576e5266d3428182f2 + 9e7fc6dc63e127bc18c17794a581776547655393 - + https://github.com/microsoft/testfx - 46955f25afa9a03f7a5748576e5266d3428182f2 + 9e7fc6dc63e127bc18c17794a581776547655393 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 3869023a9d4f654ead18b0b324b9f48e04cc021c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Dec 2025 18:09:13 +0000 Subject: [PATCH 346/392] Initial plan From 730fda26dee25d50c567bb8a47d72644889105c3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Dec 2025 18:18:51 +0000 Subject: [PATCH 347/392] Switch onelocbuild to target release/10.0.2xx branch Co-authored-by: marcpopMSFT <12663534+marcpopMSFT@users.noreply.github.com> --- .vsts-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index b7fc54598d53..632a6a488ff9 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -104,7 +104,7 @@ extends: publishTaskPrefix: 1ES. populateInternalRuntimeVariables: true runtimeSourceProperties: /p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) - locBranch: release/10.0.1xx + locBranch: release/10.0.2xx # WORKAROUND: BinSkim requires the folder exist prior to scanning. preSteps: - powershell: New-Item -ItemType Directory -Path $(Build.SourcesDirectory)/artifacts/bin -Force From e136531c267f51f24c7c34654a86bad1d1b3bd4d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 16 Dec 2025 02:02:12 +0000 Subject: [PATCH 348/392] Backflow from https://github.com/dotnet/dotnet / 5bc36fd build 294703 [[ commit created by automation ]] --- eng/Versions.props | 2 +- .../src/Microsoft.CodeAnalysis.NetAnalyzers.sarif | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index 32581262b15f..c52afa672d4d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,7 +7,7 @@ 10 0 1 - 2 + 3 $([System.String]::Copy('$(VersionSDKMinorPatch)').PadLeft(2, '0')) - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 5c9ec4eba6cf..1e528163e8be 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,139 +6,139 @@ This file should be imported by eng/Versions.props - 10.0.2-servicing.25612.111 - 10.0.2-servicing.25612.111 - 10.0.2-servicing.25612.111 - 10.0.2-servicing.25612.111 - 10.0.2 - 10.0.2-servicing.25612.111 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2-servicing.25612.111 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2-servicing.25612.111 - 10.0.2 - 10.0.2-servicing.25612.111 - 10.0.2-servicing.25612.111 - 10.0.0-preview.25612.111 - 10.0.2 - 10.0.2 + 10.0.3-servicing.25615.101 + 10.0.3-servicing.25615.101 + 10.0.3-servicing.25615.101 + 10.0.3-servicing.25615.101 + 10.0.3 + 10.0.3-servicing.25615.101 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3-servicing.25615.101 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3-servicing.25615.101 + 10.0.3 + 10.0.3-servicing.25615.101 + 10.0.3-servicing.25615.101 + 10.0.0-preview.25615.101 + 10.0.3 + 10.0.3 18.0.7 - 18.0.7-servicing-25612-111 - 7.0.2-rc.11311 - 10.0.102 - 5.0.0-2.25612.111 - 5.0.0-2.25612.111 - 5.0.0-2.25612.111 - 5.0.0-2.25612.111 - 5.0.0-2.25612.111 - 5.0.0-2.25612.111 - 5.0.0-2.25612.111 - 10.0.0-preview.25612.111 - 5.0.0-2.25612.111 - 5.0.0-2.25612.111 - 2.0.0-preview.1.25612.111 - 2.2.2 - 10.0.0-beta.25612.111 - 10.0.0-beta.25612.111 - 10.0.0-beta.25612.111 - 10.0.0-beta.25612.111 - 10.0.0-beta.25612.111 - 10.0.0-beta.25612.111 - 10.0.2 - 10.0.2 - 10.0.2-servicing.25612.111 - 10.0.2-servicing.25612.111 - 10.0.0-beta.25612.111 - 10.0.0-beta.25612.111 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 14.0.102-servicing.25612.111 - 10.0.2 - 5.0.0-2.25612.111 - 5.0.0-2.25612.111 - 10.0.2-servicing.25612.111 - 10.0.2 - 10.0.2 + 18.0.7-servicing-25615-101 + 7.0.2-rc.11601 + 10.0.103 + 5.0.0-2.25615.101 + 5.0.0-2.25615.101 + 5.0.0-2.25615.101 + 5.0.0-2.25615.101 + 5.0.0-2.25615.101 + 5.0.0-2.25615.101 + 5.0.0-2.25615.101 + 10.0.0-preview.25615.101 + 5.0.0-2.25615.101 + 5.0.0-2.25615.101 + 2.0.0-preview.1.25615.101 + 2.2.3 + 10.0.0-beta.25615.101 + 10.0.0-beta.25615.101 + 10.0.0-beta.25615.101 + 10.0.0-beta.25615.101 + 10.0.0-beta.25615.101 + 10.0.0-beta.25615.101 + 10.0.3 + 10.0.3 + 10.0.3-servicing.25615.101 + 10.0.3-servicing.25615.101 + 10.0.0-beta.25615.101 + 10.0.0-beta.25615.101 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 14.0.103-servicing.25615.101 + 10.0.3 + 5.0.0-2.25615.101 + 5.0.0-2.25615.101 + 10.0.3-servicing.25615.101 + 10.0.3 + 10.0.3 10.0.0-preview.7.25377.103 - 10.0.0-preview.25612.111 - 10.0.2-servicing.25612.111 - 18.0.1-release-25612-111 - 10.0.2 - 10.0.2-servicing.25612.111 - 10.0.102 - 10.0.102 - 10.0.102 - 10.0.102 - 10.0.102 - 10.0.102 - 10.0.102 - 10.0.102 - 10.0.102-servicing.25612.111 - 10.0.102 - 10.0.102-servicing.25612.111 - 10.0.102 - 10.0.102 - 10.0.102-servicing.25612.111 - 18.0.1-release-25612-111 - 18.0.1-release-25612-111 - 3.2.2 - 10.0.2 - 10.0.2-servicing.25612.111 - 10.0.2 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 7.0.2-rc.11311 - 10.0.2 - 2.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 - 10.0.2 + 10.0.0-preview.25615.101 + 10.0.3-servicing.25615.101 + 18.0.1-release-25615-101 + 10.0.3 + 10.0.3-servicing.25615.101 + 10.0.103 + 10.0.103 + 10.0.103 + 10.0.103 + 10.0.103 + 10.0.103 + 10.0.103 + 10.0.103 + 10.0.103-servicing.25615.101 + 10.0.103 + 10.0.103-servicing.25615.101 + 10.0.103 + 10.0.103 + 10.0.103-servicing.25615.101 + 18.0.1-release-25615-101 + 18.0.1-release-25615-101 + 3.2.3 + 10.0.3 + 10.0.3-servicing.25615.101 + 10.0.3 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 7.0.2-rc.11601 + 10.0.3 + 2.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 + 10.0.3 2.1.0 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9b175fbe25d2..0f77ce981036 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a @@ -68,170 +68,170 @@ https://github.com/dotnet/dotnet 6a953e76162f3f079405f80e28664fa51b136740 - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a https://github.com/microsoft/testfx @@ -569,9 +569,9 @@ https://github.com/microsoft/testfx aaa16e9321c4344b439324378ddb23b60e1d3461 - + https://github.com/dotnet/dotnet - 9441e5bb35fae9e956fdac4bd33ee537175e6d60 + 5bc36fd2ff085cd194a443a21eae620dfe13130a diff --git a/global.json b/global.json index 7d6bc0e3ce19..71c80ebc4386 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25612.111", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25612.111", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25615.101", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25615.101", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From d7f68d62b31900f88c1034b27a8b2a9972814192 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 16 Dec 2025 02:03:02 +0000 Subject: [PATCH 350/392] Update dependencies from https://github.com/microsoft/testfx build 20251215.8 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25604.3 -> To Version 2.1.0-preview.25615.8 MSTest From Version 4.1.0-preview.25604.3 -> To Version 4.1.0-preview.25615.8 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 1e0f600be79a..80479175c07e 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25612.7 - 4.1.0-preview.25612.7 + 2.1.0-preview.25615.8 + 4.1.0-preview.25615.8 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4a6a1bf25b7a..a5e69294e90f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/microsoft/testfx - 9e7fc6dc63e127bc18c17794a581776547655393 + d38ee5e172777b0359d26d60361d332a9e191a02 - + https://github.com/microsoft/testfx - 9e7fc6dc63e127bc18c17794a581776547655393 + d38ee5e172777b0359d26d60361d332a9e191a02 https://github.com/dotnet/dotnet From c0f3450216821c116ccc29de1d37b5d56b1fb659 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 16 Dec 2025 02:03:50 +0000 Subject: [PATCH 351/392] Update dependencies from https://github.com/microsoft/testfx build 20251215.8 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25615.8 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25615.8 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 72c6f52f0667..0f0cfff3db5d 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -144,8 +144,8 @@ This file should be imported by eng/Versions.props 2.0.0-preview.1.25527.1 - 2.1.0-preview.25612.7 - 4.1.0-preview.25612.7 + 2.1.0-preview.25615.8 + 4.1.0-preview.25615.8 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 232847348a21..49dbc4ef3e4e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -557,13 +557,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet b0f34d51fccc69fd334253924abd8d6853fad7aa - + https://github.com/microsoft/testfx - 9e7fc6dc63e127bc18c17794a581776547655393 + d38ee5e172777b0359d26d60361d332a9e191a02 - + https://github.com/microsoft/testfx - 9e7fc6dc63e127bc18c17794a581776547655393 + d38ee5e172777b0359d26d60361d332a9e191a02 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 385884d0e6c6af29cf3fd539220a7b8cf7afec3f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 17 Dec 2025 02:02:15 +0000 Subject: [PATCH 352/392] Update dependencies from https://github.com/microsoft/testfx build 20251216.5 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25604.3 -> To Version 2.1.0-preview.25616.5 MSTest From Version 4.1.0-preview.25604.3 -> To Version 4.1.0-preview.25616.5 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 80479175c07e..a12578704e3d 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25615.8 - 4.1.0-preview.25615.8 + 2.1.0-preview.25616.5 + 4.1.0-preview.25616.5 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a5e69294e90f..8470087bc442 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/microsoft/testfx - d38ee5e172777b0359d26d60361d332a9e191a02 + 8e8040d98afdd81a5c895ca79e45a627e9304449 - + https://github.com/microsoft/testfx - d38ee5e172777b0359d26d60361d332a9e191a02 + 8e8040d98afdd81a5c895ca79e45a627e9304449 https://github.com/dotnet/dotnet From 5ff60ef893ec66bea88a1916ced5600642049c3a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 17 Dec 2025 02:02:32 +0000 Subject: [PATCH 353/392] Update dependencies from https://github.com/microsoft/testfx build 20251216.5 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25616.5 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25616.5 --- eng/Version.Details.props | 64 ++++++++++----------------------------- eng/Version.Details.xml | 8 ++--- 2 files changed, 20 insertions(+), 52 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 9bd3512b6b47..beaf4f9ae7b4 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -150,39 +150,12 @@ This file should be imported by eng/Versions.props 10.0.0-beta.25605.3 10.0.0-beta.25605.3 - 2.1.0-preview.25615.8 - 4.1.0-preview.25615.8 + 2.1.0-preview.25616.5 + 4.1.0-preview.25616.5 - - $(MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion) - $(MicrosoftBuildPackageVersion) - $(MicrosoftBuildLocalizationPackageVersion) - $(MicrosoftBuildNuGetSdkResolverPackageVersion) - $(MicrosoftCodeAnalysisPackageVersion) - $(MicrosoftCodeAnalysisBuildClientPackageVersion) - $(MicrosoftCodeAnalysisCSharpPackageVersion) - $(MicrosoftCodeAnalysisCSharpCodeStylePackageVersion) - $(MicrosoftCodeAnalysisCSharpFeaturesPackageVersion) - $(MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion) - $(MicrosoftCodeAnalysisRazorToolingInternalPackageVersion) - $(MicrosoftCodeAnalysisWorkspacesCommonPackageVersion) - $(MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion) - $(MicrosoftDotNetArcadeSdkPackageVersion) - $(MicrosoftDotNetBuildTasksInstallersPackageVersion) - $(MicrosoftDotNetBuildTasksTemplatingPackageVersion) - $(MicrosoftDotNetBuildTasksWorkloadsPackageVersion) - $(MicrosoftDotNetHelixSdkPackageVersion) - $(MicrosoftDotNetSignToolPackageVersion) - $(MicrosoftDotNetXliffTasksPackageVersion) - $(MicrosoftDotNetXUnitExtensionsPackageVersion) - $(MicrosoftFSharpCompilerPackageVersion) - $(MicrosoftNetCompilersToolsetPackageVersion) - $(MicrosoftNetCompilersToolsetFrameworkPackageVersion) - $(MicrosoftNETRuntimeEmscriptenSdkInternalPackageVersion) - $(MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion) - $(MicrosoftNETTestSdkPackageVersion) + $(MicrosoftTemplateEngineAbstractionsPackageVersion) $(MicrosoftTemplateEngineAuthoringTemplateVerifierPackageVersion) $(MicrosoftTemplateEngineEdgePackageVersion) @@ -192,24 +165,6 @@ This file should be imported by eng/Versions.props $(MicrosoftTemplateEngineUtilsPackageVersion) $(MicrosoftTemplateSearchCommonPackageVersion) $(MicrosoftTemplateSearchTemplateDiscoveryPackageVersion) - $(MicrosoftTestPlatformBuildPackageVersion) - $(MicrosoftTestPlatformCLIPackageVersion) - $(NuGetBuildTasksPackageVersion) - $(NuGetBuildTasksConsolePackageVersion) - $(NuGetBuildTasksPackPackageVersion) - $(NuGetCommandLineXPlatPackageVersion) - $(NuGetCommandsPackageVersion) - $(NuGetCommonPackageVersion) - $(NuGetConfigurationPackageVersion) - $(NuGetCredentialsPackageVersion) - $(NuGetDependencyResolverCorePackageVersion) - $(NuGetFrameworksPackageVersion) - $(NuGetLibraryModelPackageVersion) - $(NuGetLocalizationPackageVersion) - $(NuGetPackagingPackageVersion) - $(NuGetProjectModelPackageVersion) - $(NuGetProtocolPackageVersion) - $(NuGetVersioningPackageVersion) $(dotnetdevcertsPackageVersion) $(dotnetuserjwtsPackageVersion) @@ -289,7 +244,20 @@ This file should be imported by eng/Versions.props $(SystemWindowsExtensionsPackageVersion) $(NETStandardLibraryRefPackageVersion) + + $(MicrosoftNETRuntimeEmscriptenSdkInternalPackageVersion) + + $(MicrosoftBuildPackageVersion) + $(MicrosoftBuildLocalizationPackageVersion) + + $(MicrosoftFSharpCompilerPackageVersion) + $(MicrosoftCodeAnalysisPackageVersion) + $(MicrosoftCodeAnalysisBuildClientPackageVersion) + $(MicrosoftCodeAnalysisCSharpPackageVersion) + $(MicrosoftCodeAnalysisCSharpCodeStylePackageVersion) + $(MicrosoftCodeAnalysisCSharpFeaturesPackageVersion) + $(MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion) $(MicrosoftCodeAnalysisExternalAccessHotReloadPackageVersion) $(MicrosoftCodeAnalysisPublicApiAnalyzersPackageVersion) $(MicrosoftCodeAnalysisWorkspacesCommonPackageVersion) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0557c8abad79..ec33fbff0fd2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -556,13 +556,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet fad253f51b461736dfd3cd9c15977bb7493becef - + https://github.com/microsoft/testfx - d38ee5e172777b0359d26d60361d332a9e191a02 + 8e8040d98afdd81a5c895ca79e45a627e9304449 - + https://github.com/microsoft/testfx - d38ee5e172777b0359d26d60361d332a9e191a02 + 8e8040d98afdd81a5c895ca79e45a627e9304449 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From edc61044425edd97fdd56e34d29b0067c0350e06 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 18 Dec 2025 02:01:38 +0000 Subject: [PATCH 354/392] Update dependencies from https://github.com/dotnet/dotnet build 295016 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.HostModel, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.Platforms, Microsoft.WindowsDesktop.App.Internal (Version 10.0.3-servicing.25615.101 -> 10.0.3-servicing.25617.106) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.3 -> 10.0.3) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.25615.101 -> 10.0.0-preview.25617.106) Microsoft.Build (Version 18.0.7 -> 18.0.9) Microsoft.Build.Localization (Version 18.0.7-servicing-25615-101 -> 18.0.9-servicing-25617-106) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.2-rc.11601 -> 7.0.2-rc.11806) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.103 -> 10.0.103) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.25615.101 -> 5.0.0-2.25617.106) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.25615.101 -> 2.0.0-preview.1.25617.106) Microsoft.DiaSymReader (Version 2.2.3 -> 2.2.3) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.25615.101 -> 10.0.0-beta.25617.106) Microsoft.FSharp.Compiler (Version 14.0.103-servicing.25615.101 -> 14.0.103-servicing.25617.106) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.1-release-25615-101 -> 18.0.1-release-25617-106) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.103-servicing.25615.101 -> 10.0.103-servicing.25617.106) Microsoft.Web.Xdt (Version 3.2.3 -> 3.2.3) System.CommandLine (Version 2.0.3 -> 2.0.3) --- NuGet.config | 2 +- eng/Version.Details.props | 128 ++++++------- eng/Version.Details.xml | 394 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 264 insertions(+), 264 deletions(-) diff --git a/NuGet.config b/NuGet.config index b14331cb4fec..574e6ae84813 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 1e528163e8be..b3252d7a2679 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.3-servicing.25615.101 - 10.0.3-servicing.25615.101 - 10.0.3-servicing.25615.101 - 10.0.3-servicing.25615.101 + 10.0.3-servicing.25617.106 + 10.0.3-servicing.25617.106 + 10.0.3-servicing.25617.106 + 10.0.3-servicing.25617.106 10.0.3 - 10.0.3-servicing.25615.101 + 10.0.3-servicing.25617.106 10.0.3 10.0.3 10.0.3 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.25615.101 + 10.0.3-servicing.25617.106 10.0.3 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.25615.101 + 10.0.3-servicing.25617.106 10.0.3 - 10.0.3-servicing.25615.101 - 10.0.3-servicing.25615.101 - 10.0.0-preview.25615.101 + 10.0.3-servicing.25617.106 + 10.0.3-servicing.25617.106 + 10.0.0-preview.25617.106 10.0.3 10.0.3 - 18.0.7 - 18.0.7-servicing-25615-101 - 7.0.2-rc.11601 + 18.0.9 + 18.0.9-servicing-25617-106 + 7.0.2-rc.11806 10.0.103 - 5.0.0-2.25615.101 - 5.0.0-2.25615.101 - 5.0.0-2.25615.101 - 5.0.0-2.25615.101 - 5.0.0-2.25615.101 - 5.0.0-2.25615.101 - 5.0.0-2.25615.101 - 10.0.0-preview.25615.101 - 5.0.0-2.25615.101 - 5.0.0-2.25615.101 - 2.0.0-preview.1.25615.101 + 5.0.0-2.25617.106 + 5.0.0-2.25617.106 + 5.0.0-2.25617.106 + 5.0.0-2.25617.106 + 5.0.0-2.25617.106 + 5.0.0-2.25617.106 + 5.0.0-2.25617.106 + 10.0.0-preview.25617.106 + 5.0.0-2.25617.106 + 5.0.0-2.25617.106 + 2.0.0-preview.1.25617.106 2.2.3 - 10.0.0-beta.25615.101 - 10.0.0-beta.25615.101 - 10.0.0-beta.25615.101 - 10.0.0-beta.25615.101 - 10.0.0-beta.25615.101 - 10.0.0-beta.25615.101 + 10.0.0-beta.25617.106 + 10.0.0-beta.25617.106 + 10.0.0-beta.25617.106 + 10.0.0-beta.25617.106 + 10.0.0-beta.25617.106 + 10.0.0-beta.25617.106 10.0.3 10.0.3 - 10.0.3-servicing.25615.101 - 10.0.3-servicing.25615.101 - 10.0.0-beta.25615.101 - 10.0.0-beta.25615.101 + 10.0.3-servicing.25617.106 + 10.0.3-servicing.25617.106 + 10.0.0-beta.25617.106 + 10.0.0-beta.25617.106 10.0.3 10.0.3 10.0.3 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 14.0.103-servicing.25615.101 + 14.0.103-servicing.25617.106 10.0.3 - 5.0.0-2.25615.101 - 5.0.0-2.25615.101 - 10.0.3-servicing.25615.101 + 5.0.0-2.25617.106 + 5.0.0-2.25617.106 + 10.0.3-servicing.25617.106 10.0.3 10.0.3 10.0.0-preview.7.25377.103 - 10.0.0-preview.25615.101 - 10.0.3-servicing.25615.101 - 18.0.1-release-25615-101 + 10.0.0-preview.25617.106 + 10.0.3-servicing.25617.106 + 18.0.1-release-25617-106 10.0.3 - 10.0.3-servicing.25615.101 + 10.0.3-servicing.25617.106 10.0.103 10.0.103 10.0.103 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.103 10.0.103 10.0.103 - 10.0.103-servicing.25615.101 + 10.0.103-servicing.25617.106 10.0.103 - 10.0.103-servicing.25615.101 + 10.0.103-servicing.25617.106 10.0.103 10.0.103 - 10.0.103-servicing.25615.101 - 18.0.1-release-25615-101 - 18.0.1-release-25615-101 + 10.0.103-servicing.25617.106 + 18.0.1-release-25617-106 + 18.0.1-release-25617-106 3.2.3 10.0.3 - 10.0.3-servicing.25615.101 + 10.0.3-servicing.25617.106 10.0.3 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 - 7.0.2-rc.11601 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 + 7.0.2-rc.11806 10.0.3 2.0.3 10.0.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0f77ce981036..33826b6e121c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 - + https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 5bc36fd2ff085cd194a443a21eae620dfe13130a + 21f2289fdb0d087b43837c9b00e1af6fb72e8515 diff --git a/global.json b/global.json index 71c80ebc4386..76da844af043 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25615.101", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25615.101", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25617.106", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25617.106", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 7115630edbe1832332149463d333c89d2f257f86 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 18 Dec 2025 02:02:51 +0000 Subject: [PATCH 355/392] Update dependencies from https://github.com/microsoft/testfx build 20251217.6 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25604.3 -> To Version 2.1.0-preview.25617.6 MSTest From Version 4.1.0-preview.25604.3 -> To Version 4.1.0-preview.25617.6 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index a12578704e3d..f1ba29352447 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25616.5 - 4.1.0-preview.25616.5 + 2.1.0-preview.25617.6 + 4.1.0-preview.25617.6 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8470087bc442..c5ff7c325370 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 9441e5bb35fae9e956fdac4bd33ee537175e6d60 - + https://github.com/microsoft/testfx - 8e8040d98afdd81a5c895ca79e45a627e9304449 + e183a03b1e200baa83f3b00b83633338d356581a - + https://github.com/microsoft/testfx - 8e8040d98afdd81a5c895ca79e45a627e9304449 + e183a03b1e200baa83f3b00b83633338d356581a https://github.com/dotnet/dotnet From 599606d65b0b267f09b468cc51a75583295a21d0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 18 Dec 2025 02:03:09 +0000 Subject: [PATCH 356/392] Update dependencies from https://github.com/microsoft/testfx build 20251217.6 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.25617.6 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.25617.6 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index beaf4f9ae7b4..424b83f08831 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -150,8 +150,8 @@ This file should be imported by eng/Versions.props 10.0.0-beta.25605.3 10.0.0-beta.25605.3 - 2.1.0-preview.25616.5 - 4.1.0-preview.25616.5 + 2.1.0-preview.25617.6 + 4.1.0-preview.25617.6 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ec33fbff0fd2..798df8e8a0e9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -556,13 +556,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet fad253f51b461736dfd3cd9c15977bb7493becef - + https://github.com/microsoft/testfx - 8e8040d98afdd81a5c895ca79e45a627e9304449 + e183a03b1e200baa83f3b00b83633338d356581a - + https://github.com/microsoft/testfx - 8e8040d98afdd81a5c895ca79e45a627e9304449 + e183a03b1e200baa83f3b00b83633338d356581a https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 9c98589d59f5a0c55e71ceab1be8dd6964cb3209 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 19 Dec 2025 02:02:29 +0000 Subject: [PATCH 357/392] Update dependencies from https://github.com/dotnet/dotnet build 295183 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.HostModel, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.Platforms, Microsoft.WindowsDesktop.App.Internal (Version 10.0.3-servicing.25617.106 -> 10.0.3-servicing.25618.108) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.3 -> 10.0.3) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.25617.106 -> 10.0.0-preview.25618.108) Microsoft.Build (Version 18.0.9 -> 18.0.9) Microsoft.Build.Localization (Version 18.0.9-servicing-25617-106 -> 18.0.9-servicing-25618-108) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.2-rc.11806 -> 7.0.2-rc.11908) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.103 -> 10.0.103) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.25617.106 -> 5.0.0-2.25618.108) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.25617.106 -> 2.0.0-preview.1.25618.108) Microsoft.DiaSymReader (Version 2.2.3 -> 2.2.3) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.25617.106 -> 10.0.0-beta.25618.108) Microsoft.FSharp.Compiler (Version 14.0.103-servicing.25617.106 -> 14.0.103-servicing.25618.108) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.1-release-25617-106 -> 18.0.1-release-25618-108) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.103-servicing.25617.106 -> 10.0.103-servicing.25618.108) Microsoft.Web.Xdt (Version 3.2.3 -> 3.2.3) System.CommandLine (Version 2.0.3 -> 2.0.3) --- NuGet.config | 2 +- eng/Version.Details.props | 126 ++++++------ eng/Version.Details.xml | 392 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 262 insertions(+), 262 deletions(-) diff --git a/NuGet.config b/NuGet.config index 574e6ae84813..8a174103e744 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index b3252d7a2679..aa734b23a2b1 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.3-servicing.25617.106 - 10.0.3-servicing.25617.106 - 10.0.3-servicing.25617.106 - 10.0.3-servicing.25617.106 + 10.0.3-servicing.25618.108 + 10.0.3-servicing.25618.108 + 10.0.3-servicing.25618.108 + 10.0.3-servicing.25618.108 10.0.3 - 10.0.3-servicing.25617.106 + 10.0.3-servicing.25618.108 10.0.3 10.0.3 10.0.3 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.25617.106 + 10.0.3-servicing.25618.108 10.0.3 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.25617.106 + 10.0.3-servicing.25618.108 10.0.3 - 10.0.3-servicing.25617.106 - 10.0.3-servicing.25617.106 - 10.0.0-preview.25617.106 + 10.0.3-servicing.25618.108 + 10.0.3-servicing.25618.108 + 10.0.0-preview.25618.108 10.0.3 10.0.3 18.0.9 - 18.0.9-servicing-25617-106 - 7.0.2-rc.11806 + 18.0.9-servicing-25618-108 + 7.0.2-rc.11908 10.0.103 - 5.0.0-2.25617.106 - 5.0.0-2.25617.106 - 5.0.0-2.25617.106 - 5.0.0-2.25617.106 - 5.0.0-2.25617.106 - 5.0.0-2.25617.106 - 5.0.0-2.25617.106 - 10.0.0-preview.25617.106 - 5.0.0-2.25617.106 - 5.0.0-2.25617.106 - 2.0.0-preview.1.25617.106 + 5.0.0-2.25618.108 + 5.0.0-2.25618.108 + 5.0.0-2.25618.108 + 5.0.0-2.25618.108 + 5.0.0-2.25618.108 + 5.0.0-2.25618.108 + 5.0.0-2.25618.108 + 10.0.0-preview.25618.108 + 5.0.0-2.25618.108 + 5.0.0-2.25618.108 + 2.0.0-preview.1.25618.108 2.2.3 - 10.0.0-beta.25617.106 - 10.0.0-beta.25617.106 - 10.0.0-beta.25617.106 - 10.0.0-beta.25617.106 - 10.0.0-beta.25617.106 - 10.0.0-beta.25617.106 + 10.0.0-beta.25618.108 + 10.0.0-beta.25618.108 + 10.0.0-beta.25618.108 + 10.0.0-beta.25618.108 + 10.0.0-beta.25618.108 + 10.0.0-beta.25618.108 10.0.3 10.0.3 - 10.0.3-servicing.25617.106 - 10.0.3-servicing.25617.106 - 10.0.0-beta.25617.106 - 10.0.0-beta.25617.106 + 10.0.3-servicing.25618.108 + 10.0.3-servicing.25618.108 + 10.0.0-beta.25618.108 + 10.0.0-beta.25618.108 10.0.3 10.0.3 10.0.3 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 14.0.103-servicing.25617.106 + 14.0.103-servicing.25618.108 10.0.3 - 5.0.0-2.25617.106 - 5.0.0-2.25617.106 - 10.0.3-servicing.25617.106 + 5.0.0-2.25618.108 + 5.0.0-2.25618.108 + 10.0.3-servicing.25618.108 10.0.3 10.0.3 10.0.0-preview.7.25377.103 - 10.0.0-preview.25617.106 - 10.0.3-servicing.25617.106 - 18.0.1-release-25617-106 + 10.0.0-preview.25618.108 + 10.0.3-servicing.25618.108 + 18.0.1-release-25618-108 10.0.3 - 10.0.3-servicing.25617.106 + 10.0.3-servicing.25618.108 10.0.103 10.0.103 10.0.103 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.103 10.0.103 10.0.103 - 10.0.103-servicing.25617.106 + 10.0.103-servicing.25618.108 10.0.103 - 10.0.103-servicing.25617.106 + 10.0.103-servicing.25618.108 10.0.103 10.0.103 - 10.0.103-servicing.25617.106 - 18.0.1-release-25617-106 - 18.0.1-release-25617-106 + 10.0.103-servicing.25618.108 + 18.0.1-release-25618-108 + 18.0.1-release-25618-108 3.2.3 10.0.3 - 10.0.3-servicing.25617.106 + 10.0.3-servicing.25618.108 10.0.3 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 - 7.0.2-rc.11806 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 + 7.0.2-rc.11908 10.0.3 2.0.3 10.0.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 33826b6e121c..c42a0b1d0d57 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 - + https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 21f2289fdb0d087b43837c9b00e1af6fb72e8515 + 1757646605cb1e0635c3bf40c8b9433732661065 diff --git a/global.json b/global.json index 76da844af043..fd4eb4911479 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25617.106", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25617.106", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25618.108", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25618.108", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 29c8df0952123c3f7cf23af2e1daf348515f7b3a Mon Sep 17 00:00:00 2001 From: dotnet bot Date: Fri, 19 Dec 2025 07:16:05 +0100 Subject: [PATCH 358/392] Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2863984 --- .../Commands/xlf/CliCommandStrings.cs.xlf | 64 +++++++++---------- .../Commands/xlf/CliCommandStrings.de.xlf | 64 +++++++++---------- 2 files changed, 64 insertions(+), 64 deletions(-) diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.cs.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.cs.xlf index aaea01228d53..69f0ea0788e1 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.cs.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.cs.xlf @@ -94,7 +94,7 @@ @@ -186,7 +186,7 @@ Prohledané cesty: „{1}“, „{2}“. Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. - Některé direktivy nelze převést. Spuštěním souboru zobrazíte všechny chyby kompilace. Zadejte „--force“, pokud chcete přesto provést převod. + Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. {Locked="--force"} @@ -236,7 +236,7 @@ Prohledané cesty: „{1}“, „{2}“. @@ -460,12 +460,12 @@ Pokud není zadaný, soubor se vygeneruje ve výchozím adresáři TestResults.< Defines the path of directory to run. If not specified, it defaults to the current directory. - Definuje cestu k adresáři pro spuštění. Pokud se nezadá, použije se výchozí nastavení aktuálního adresáře. + Defines the path of directory to run. If not specified, it defaults to the current directory. DIRECTORY_PATH - DIRECTORY_PATH + DIRECTORY_PATH @@ -745,12 +745,12 @@ Jedná se o ekvivalent odstranění project.assets.json. Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. - Definuje cestu k souboru projektu, který se má spustit (název složky nebo úplná cesta). Pokud se nezadá, použije se výchozí nastavení aktuálního adresáře. + Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. PROJECT_PATH - PROJECT_PATH + PROJECT_PATH @@ -797,7 +797,7 @@ Pokud zadaný adresář neexistuje, bude vytvořen. Defines the path of the solution file to run. If not specified, it defaults to the current directory. - Definuje cestu k souboru řešení, který se má spustit. Pokud se nezadá, použije se výchozí nastavení aktuálního adresáře. + Defines the path of the solution file to run. If not specified, it defaults to the current directory. @@ -988,7 +988,7 @@ Další informace najdete na https://aka.ms/dotnet-test/mtp. The path to the project file to run (defaults to the current directory if there is only one project). - Cesta ke spouštěnému souboru projektu (výchozí je aktuální adresář, pokud existuje jenom jeden projekt) + The path to the project file to run (defaults to the current directory if there is only one project). @@ -1073,7 +1073,7 @@ Další informace najdete na https://aka.ms/dotnet-test/mtp. (Default) - (výchozí) + (Default) @@ -1108,7 +1108,7 @@ Další informace najdete na https://aka.ms/dotnet-test/mtp. An error was encountered when reading '{0}': {1} - Při čtení {0} došlo k chybě: {1} + An error was encountered when reading '{0}': {1} {0} is file path. {1} is exception message. @@ -1128,7 +1128,7 @@ Další informace najdete na https://aka.ms/dotnet-test/mtp. error - chyba + error Used when reporting directive errors like "file(location): error: message". @@ -1194,7 +1194,7 @@ Další informace najdete na https://aka.ms/dotnet-test/mtp. 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. - Příkaz dotnet neočekávaně obdržel z pojmenovaného kanálu dotnet test méně než 4 bajty. + 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. @@ -1226,14 +1226,14 @@ Další informace najdete na https://aka.ms/dotnet-test/mtp. There are several launch profiles with case-sensitive names, which isn't permitted: {0} Make the profile names distinct. - Existuje několik spouštěcích profilů s názvy rozlišujícími malá a velká písmena, což není povoleno: + There are several launch profiles with case-sensitive names, which isn't permitted: {0} -Nastavte odlišné názvy profilů. +Make the profile names distinct. Duplicate directives are not supported: {0} - Duplicitní direktivy nejsou podporovány: {0} + Duplicate directives are not supported: {0} {0} is the directive type and name. @@ -1593,7 +1593,7 @@ Nastavte odlišné názvy profilů. The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. - Direktiva by měla obsahovat název bez speciálních znaků a volitelnou hodnotu oddělenou znakem {1}, například #:{0} Název{1}Hodnota. + The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. {0} is the directive type like 'package' or 'sdk'. {1} is the expected separator like '@' or '='. @@ -1613,7 +1613,7 @@ Nastavte odlišné názvy profilů. The '#:project' directive is invalid: {0} - Direktiva #:project je neplatná: {0} + The '#:project' directive is invalid: {0} {0} is the inner error message. @@ -1638,22 +1638,22 @@ Nastavte odlišné názvy profilů. A launch profile with the name '{0}' doesn't exist. - Profil spuštění s názvem {0} neexistuje. + A launch profile with the name '{0}' doesn't exist. The launch profile type '{0}' is not supported. - Typ profilu spuštění {0} se nepodporuje. + The launch profile type '{0}' is not supported. A profile with the specified name isn't a valid JSON object. - Profil se zadaným názvem není platný objekt JSON. + A profile with the specified name isn't a valid JSON object. The 'profiles' property of the launch settings document is not a JSON object. - Vlastnost profiles v dokumentu nastavení spuštění není objektem JSON. + The 'profiles' property of the launch settings document is not a JSON object. @@ -1755,7 +1755,7 @@ Nástroj {1} (verze {2}) se úspěšně nainstaloval. Do souboru manifestu {3} s Missing name of '{0}'. - Chybí název pro: {0}. + Missing name of '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -1979,7 +1979,7 @@ Nástroj {1} (verze {2}) se úspěšně nainstaloval. Do souboru manifestu {3} s @@ -2467,7 +2467,7 @@ Nástroj {1} (verze {2}) se úspěšně nainstaloval. Do souboru manifestu {3} s Specify the output directory ({0}): - Zadejte výstupní adresář ({0}): + Specify the output directory ({0}): {0} is the default value @@ -2522,12 +2522,12 @@ Nástroj {1} (verze {2}) se úspěšně nainstaloval. Do souboru manifestu {3} s Invalid property name: {0} - Neplatný název vlastnosti: {0} + Invalid property name: {0} {0} is an inner exception message. The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. - Direktiva property musí mít dvě části oddělené znakem =, například #:property PropertyName=PropertyValue. + The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. {Locked="#:property"} @@ -2537,7 +2537,7 @@ Nástroj {1} (verze {2}) se úspěšně nainstaloval. Do souboru manifestu {3} s @@ -2574,7 +2574,7 @@ Ve výchozím nastavení je publikována aplikace závislá na architektuře. Directives currently cannot contain double quotes ("). - Direktivy v současné době nemůžou obsahovat dvojité uvozovky ("). + Directives currently cannot contain double quotes ("). @@ -3083,7 +3083,7 @@ Cílem projektu je více architektur. Pomocí parametru {0} určete, která arch Static graph restore is not supported for file-based apps. Remove the '#:property'. - Statické obnovení grafu se pro souborové aplikace nepodporuje. Odeberte #:property. + Static graph restore is not supported for file-based apps. Remove the '#:property'. {Locked="#:property"} @@ -3634,7 +3634,7 @@ příkazu „dotnet tool list“. Unrecognized directive '{0}'. - Nerozpoznaná direktiva {0}. + Unrecognized directive '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -3714,7 +3714,7 @@ příkazu „dotnet tool list“. A usable launch profile could not be located. - Nenašel se použitelný profil spuštění. + A usable launch profile could not be located. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.de.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.de.xlf index 6f0c0b4e0998..e3a05f3c7545 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.de.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.de.xlf @@ -94,7 +94,7 @@ @@ -186,7 +186,7 @@ Durchsuchte Pfade: "{1}", "{2}". Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. - Einige Anweisungen können nicht konvertiert werden. Führen Sie die Datei aus, um alle Kompilierungsfehler anzuzeigen. Geben Sie „--force“ an, um das Umwandeln trotzdem auszuführen. + Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. {Locked="--force"} @@ -236,7 +236,7 @@ Durchsuchte Pfade: "{1}", "{2}". @@ -460,12 +460,12 @@ Sofern nicht angegeben, wird die Datei im Standardverzeichnis "TestResults" gene Defines the path of directory to run. If not specified, it defaults to the current directory. - Definiert den Pfad des auszuführenden Verzeichnisses. Wenn keine Angabe erfolgt, wird standardmäßig das aktuelle Verzeichnis verwendet. + Defines the path of directory to run. If not specified, it defaults to the current directory. DIRECTORY_PATH - DIRECTORY_PATH + DIRECTORY_PATH @@ -745,12 +745,12 @@ Dies entspricht dem Löschen von "project.assets.json". Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. - Definiert den Pfad der auszuführenden Projektdatei (Ordnername oder vollständiger Pfad). Wenn keine Angabe erfolgt, wird standardmäßig das aktuelle Verzeichnis verwendet. + Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. PROJECT_PATH - PROJECT_PATH + PROJECT_PATH @@ -797,7 +797,7 @@ Das angegebene Verzeichnis wird erstellt, wenn es nicht vorhanden ist. Defines the path of the solution file to run. If not specified, it defaults to the current directory. - Definiert den Pfad der auszuführenden Projektmappendatei. Wenn keine Angabe erfolgt, wird standardmäßig das aktuelle Verzeichnis verwendet. + Defines the path of the solution file to run. If not specified, it defaults to the current directory. @@ -988,7 +988,7 @@ Weitere Informationen finden Sie unter https://aka.ms/dotnet-test/mtp. The path to the project file to run (defaults to the current directory if there is only one project). - Der Pfad zur auszuführenden Projektdatei (standardmäßig das aktuelle Verzeichnis, falls nur ein einzelnes Projekt vorhanden ist). + The path to the project file to run (defaults to the current directory if there is only one project). @@ -1073,7 +1073,7 @@ Weitere Informationen finden Sie unter https://aka.ms/dotnet-test/mtp. (Default) - (Standard) + (Default) @@ -1108,7 +1108,7 @@ Weitere Informationen finden Sie unter https://aka.ms/dotnet-test/mtp. An error was encountered when reading '{0}': {1} - Beim Lesen von „{0}“ ist ein Fehler aufgetreten: {1} + An error was encountered when reading '{0}': {1} {0} is file path. {1} is exception message. @@ -1128,7 +1128,7 @@ Weitere Informationen finden Sie unter https://aka.ms/dotnet-test/mtp. error - Fehler + error Used when reporting directive errors like "file(location): error: message". @@ -1194,7 +1194,7 @@ Weitere Informationen finden Sie unter https://aka.ms/dotnet-test/mtp. 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. - „dotnet“ hat unerwartet weniger als 4 Bytes von der Named Pipe „dotnet test“ empfangen. + 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. @@ -1226,14 +1226,14 @@ Weitere Informationen finden Sie unter https://aka.ms/dotnet-test/mtp. There are several launch profiles with case-sensitive names, which isn't permitted: {0} Make the profile names distinct. - Es gibt mehrere Startprofile mit Namen, bei denen die Groß-/Kleinschreibung beachtet wird, was nicht zulässig ist: + There are several launch profiles with case-sensitive names, which isn't permitted: {0} -Erstellen Sie eindeutige Profilnamen. +Make the profile names distinct. Duplicate directives are not supported: {0} - Doppelte Anweisungen werden nicht unterstützt: {0} + Duplicate directives are not supported: {0} {0} is the directive type and name. @@ -1593,7 +1593,7 @@ Erstellen Sie eindeutige Profilnamen. The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. - Die Anweisung sollte einen Namen ohne Sonderzeichen und einen optionalen Wert enthalten, die durch „{1}“ getrennt sind, wie „#:{0} Name{1}Wert“. + The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. {0} is the directive type like 'package' or 'sdk'. {1} is the expected separator like '@' or '='. @@ -1613,7 +1613,7 @@ Erstellen Sie eindeutige Profilnamen. The '#:project' directive is invalid: {0} - Die Anweisung „#:p roject“ ist ungültig: {0} + The '#:project' directive is invalid: {0} {0} is the inner error message. @@ -1638,22 +1638,22 @@ Erstellen Sie eindeutige Profilnamen. A launch profile with the name '{0}' doesn't exist. - Es ist kein Startprofil mit dem Namen "{0}" vorhanden. + A launch profile with the name '{0}' doesn't exist. The launch profile type '{0}' is not supported. - Der Startprofiltyp "{0}" wird nicht unterstützt. + The launch profile type '{0}' is not supported. A profile with the specified name isn't a valid JSON object. - Ein Profil mit dem angegebenen Namen ist kein gültiges JSON-Objekt. + A profile with the specified name isn't a valid JSON object. The 'profiles' property of the launch settings document is not a JSON object. - Die Eigenschaft "Profile" des Starteigenschaftendokuments ist kein JSON-Objekt. + The 'profiles' property of the launch settings document is not a JSON object. @@ -1755,7 +1755,7 @@ Das Tool "{1}" (Version {2}) wurde erfolgreich installiert. Der Eintrag wird der Missing name of '{0}'. - Fehlender Name der Anweisung „{0}“. + Missing name of '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -1979,7 +1979,7 @@ Das Tool "{1}" (Version {2}) wurde erfolgreich installiert. Der Eintrag wird der @@ -2467,7 +2467,7 @@ Das Tool "{1}" (Version {2}) wurde erfolgreich installiert. Der Eintrag wird der Specify the output directory ({0}): - Ausgabeverzeichnis ({0}) angeben: + Specify the output directory ({0}): {0} is the default value @@ -2522,12 +2522,12 @@ Das Tool "{1}" (Version {2}) wurde erfolgreich installiert. Der Eintrag wird der Invalid property name: {0} - Ungültiger Eigenschaftenname: {0} + Invalid property name: {0} {0} is an inner exception message. The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. - Die Eigenschaftsanweisung muss zwei durch „=“ getrennte Teile aufweisen, z. B. „#:property PropertyName=PropertyValue“. + The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. {Locked="#:property"} @@ -2537,7 +2537,7 @@ Das Tool "{1}" (Version {2}) wurde erfolgreich installiert. Der Eintrag wird der @@ -2574,7 +2574,7 @@ Standardmäßig wird eine Framework-abhängige Anwendung veröffentlicht. Directives currently cannot contain double quotes ("). - Direktiven dürfen derzeit keine doppelten Anführungszeichen (") enthalten. + Directives currently cannot contain double quotes ("). @@ -3083,7 +3083,7 @@ Ihr Projekt verwendet mehrere Zielframeworks. Geben Sie über "{0}" an, welches Static graph restore is not supported for file-based apps. Remove the '#:property'. - Die Statische Graphwiederherstellung wird für dateibasierte Apps nicht unterstützt. Entfernen Sie '#:property'. + Static graph restore is not supported for file-based apps. Remove the '#:property'. {Locked="#:property"} @@ -3634,7 +3634,7 @@ und die zugehörigen Paket-IDs für installierte Tools über den Befehl Unrecognized directive '{0}'. - Unbekannte Anweisung „{0}“. + Unrecognized directive '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -3714,7 +3714,7 @@ und die zugehörigen Paket-IDs für installierte Tools über den Befehl A usable launch profile could not be located. - Es wurde kein verwendbares Startprofil gefunden. + A usable launch profile could not be located. From 976b11b91d6e5e3403a3830a42e6a8b252d9d640 Mon Sep 17 00:00:00 2001 From: dotnet bot Date: Fri, 19 Dec 2025 07:17:19 +0100 Subject: [PATCH 359/392] Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2863984 --- .../Commands/xlf/CliCommandStrings.es.xlf | 64 +++++++++---------- .../Commands/xlf/CliCommandStrings.fr.xlf | 64 +++++++++---------- .../Commands/xlf/CliCommandStrings.it.xlf | 64 +++++++++---------- .../Commands/xlf/CliCommandStrings.ja.xlf | 64 +++++++++---------- .../Commands/xlf/CliCommandStrings.ko.xlf | 64 +++++++++---------- .../Commands/xlf/CliCommandStrings.pl.xlf | 64 +++++++++---------- .../Commands/xlf/CliCommandStrings.pt-BR.xlf | 64 +++++++++---------- .../Commands/xlf/CliCommandStrings.ru.xlf | 64 +++++++++---------- .../Commands/xlf/CliCommandStrings.tr.xlf | 64 +++++++++---------- .../xlf/CliCommandStrings.zh-Hans.xlf | 64 +++++++++---------- .../xlf/CliCommandStrings.zh-Hant.xlf | 64 +++++++++---------- 11 files changed, 352 insertions(+), 352 deletions(-) diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.es.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.es.xlf index 8fc261f14d53..82aa42c23b79 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.es.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.es.xlf @@ -94,7 +94,7 @@ @@ -186,7 +186,7 @@ Rutas de acceso buscadas: "{1}", "{2}". Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. - Algunas directivas no se pueden convertir. Ejecute el archivo para ver todos los errores de compilación. Especifique "--force" para convertir de todos modos. + Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. {Locked="--force"} @@ -236,7 +236,7 @@ Rutas de acceso buscadas: "{1}", "{2}". @@ -460,12 +460,12 @@ Si no se especifica, el archivo se generará dentro del directorio predeterminad Defines the path of directory to run. If not specified, it defaults to the current directory. - Define la ruta de acceso del directorio que se va a ejecutar. Si no se especifica, el valor predeterminado es el directorio actual. + Defines the path of directory to run. If not specified, it defaults to the current directory. DIRECTORY_PATH - DIRECTORY_PATH + DIRECTORY_PATH @@ -745,12 +745,12 @@ Esta acción es equivalente a eliminar project.assets.json. Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. - Define la ruta de acceso del archivo de proyecto que se va a ejecutar (nombre de carpeta o ruta de acceso completa). Si no se especifica, el valor predeterminado es el directorio actual. + Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. PROJECT_PATH - PROJECT_PATH + PROJECT_PATH @@ -797,7 +797,7 @@ Si no existe, se creará el directorio especificado. Defines the path of the solution file to run. If not specified, it defaults to the current directory. - Define la ruta de acceso del archivo de solución que se va a ejecutar. Si no se especifica, el valor predeterminado es el directorio actual. + Defines the path of the solution file to run. If not specified, it defaults to the current directory. @@ -988,7 +988,7 @@ Consulte https://aka.ms/dotnet-test/mtp para obtener más información. The path to the project file to run (defaults to the current directory if there is only one project). - Ruta de acceso al archivo del proyecto que debe ejecutarse (si solo hay un proyecto, es el directorio actual de forma predeterminada). + The path to the project file to run (defaults to the current directory if there is only one project). @@ -1073,7 +1073,7 @@ Consulte https://aka.ms/dotnet-test/mtp para obtener más información. (Default) - (Predeterminada) + (Default) @@ -1108,7 +1108,7 @@ Consulte https://aka.ms/dotnet-test/mtp para obtener más información. An error was encountered when reading '{0}': {1} - Error al leer '{0}': {1} + An error was encountered when reading '{0}': {1} {0} is file path. {1} is exception message. @@ -1128,7 +1128,7 @@ Consulte https://aka.ms/dotnet-test/mtp para obtener más información. error - error + error Used when reporting directive errors like "file(location): error: message". @@ -1194,7 +1194,7 @@ Consulte https://aka.ms/dotnet-test/mtp para obtener más información. 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. - "dotnet" recibió inesperadamente menos de 4 bytes de la canalización con nombre "dotnet test". + 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. @@ -1226,14 +1226,14 @@ Consulte https://aka.ms/dotnet-test/mtp para obtener más información. There are several launch profiles with case-sensitive names, which isn't permitted: {0} Make the profile names distinct. - Hay varios perfiles de inicio con nombres que distinguen mayúsculas de minúsculas, lo que no está permitido: + There are several launch profiles with case-sensitive names, which isn't permitted: {0} -Defina nombres de perfiles distintos. +Make the profile names distinct. Duplicate directives are not supported: {0} - No se admiten directivas duplicadas: {0} + Duplicate directives are not supported: {0} {0} is the directive type and name. @@ -1593,7 +1593,7 @@ Defina nombres de perfiles distintos. The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. - La directiva debe contener un nombre sin caracteres especiales y un valor opcional separado por "{1}" como "#:{0} Nombre{1}Valor". + The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. {0} is the directive type like 'package' or 'sdk'. {1} is the expected separator like '@' or '='. @@ -1613,7 +1613,7 @@ Defina nombres de perfiles distintos. The '#:project' directive is invalid: {0} - La directiva "#:project" no es válida: {0} + The '#:project' directive is invalid: {0} {0} is the inner error message. @@ -1638,22 +1638,22 @@ Defina nombres de perfiles distintos. A launch profile with the name '{0}' doesn't exist. - No existe ningún perfil de inicio con el nombre "{0}". + A launch profile with the name '{0}' doesn't exist. The launch profile type '{0}' is not supported. - No se admite el tipo de perfil de inicio "{0}". + The launch profile type '{0}' is not supported. A profile with the specified name isn't a valid JSON object. - Un perfil con el nombre especificado no es un objeto JSON válido. + A profile with the specified name isn't a valid JSON object. The 'profiles' property of the launch settings document is not a JSON object. - La propiedad "profiles" del documento de configuración de inicio no es un objeto JSON. + The 'profiles' property of the launch settings document is not a JSON object. @@ -1755,7 +1755,7 @@ La herramienta "{1}" (versión "{2}") se instaló correctamente. Se ha agregado Missing name of '{0}'. - Falta el nombre de "{0}". + Missing name of '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -1979,7 +1979,7 @@ La herramienta "{1}" (versión "{2}") se instaló correctamente. Se ha agregado @@ -2467,7 +2467,7 @@ La herramienta "{1}" (versión "{2}") se instaló correctamente. Se ha agregado Specify the output directory ({0}): - Especifique el directorio de salida ({0}): + Specify the output directory ({0}): {0} is the default value @@ -2522,12 +2522,12 @@ La herramienta "{1}" (versión "{2}") se instaló correctamente. Se ha agregado Invalid property name: {0} - Nombre de propiedad no válido {0} + Invalid property name: {0} {0} is an inner exception message. The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. - La directiva de propiedad debe tener dos partes separadas por "=", como "#:property PropertyName=PropertyValue". + The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. {Locked="#:property"} @@ -2537,7 +2537,7 @@ La herramienta "{1}" (versión "{2}") se instaló correctamente. Se ha agregado @@ -2574,7 +2574,7 @@ El valor predeterminado es publicar una aplicación dependiente del marco. Directives currently cannot contain double quotes ("). - Las directivas no pueden contener comillas dobles ("), por ahora. + Directives currently cannot contain double quotes ("). @@ -3083,7 +3083,7 @@ Su proyecto tiene como destino varias plataformas. Especifique la que quiere usa Static graph restore is not supported for file-based apps. Remove the '#:property'. - No se admite la restauración de gráficos estáticos para aplicaciones basadas en archivos. Elimine "#:property". + Static graph restore is not supported for file-based apps. Remove the '#:property'. {Locked="#:property"} @@ -3634,7 +3634,7 @@ y los identificadores de los paquetes correspondientes a las herramientas instal Unrecognized directive '{0}'. - Directiva no reconocida "{0}". + Unrecognized directive '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -3714,7 +3714,7 @@ y los identificadores de los paquetes correspondientes a las herramientas instal A usable launch profile could not be located. - No se ha podido encontrar un perfil de inicio que se pueda usar. + A usable launch profile could not be located. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.fr.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.fr.xlf index 3d8be0107a50..b6da938fbb90 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.fr.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.fr.xlf @@ -94,7 +94,7 @@ @@ -186,7 +186,7 @@ Les chemins d’accès ont recherché : « {1} », « {2} ». Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. - Vous ne pouvez pas convertir certaines directives. Exécutez le fichier pour voir toutes les erreurs de compilation. Spécifiez « --force » pour convertir quand même. + Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. {Locked="--force"} @@ -236,7 +236,7 @@ Les chemins d’accès ont recherché : « {1} », « {2} ». @@ -460,12 +460,12 @@ S’il n’est pas spécifié, le fichier est généré dans le répertoire «  Defines the path of directory to run. If not specified, it defaults to the current directory. - Définit le chemin d’accès du répertoire à exécuter. Si rien n’est spécifié, la valeur par défaut est le répertoire actif. + Defines the path of directory to run. If not specified, it defaults to the current directory. DIRECTORY_PATH - DIRECTORY_PATH + DIRECTORY_PATH @@ -745,12 +745,12 @@ Cela équivaut à supprimer project.assets.json. Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. - Définit le chemin d’accès du fichier projet à exécuter (nom de dossier ou chemin d’accès complet). Si rien n’est spécifié, la valeur par défaut est le répertoire actif. + Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. PROJECT_PATH - PROJECT_PATH + PROJECT_PATH @@ -797,7 +797,7 @@ Le répertoire spécifié est créé, s'il n'existe pas déjà. Defines the path of the solution file to run. If not specified, it defaults to the current directory. - Définit le chemin d’accès du fichier solution à exécuter. Si rien n’est spécifié, la valeur par défaut est le répertoire actif. + Defines the path of the solution file to run. If not specified, it defaults to the current directory. @@ -988,7 +988,7 @@ Pour découvrir plus d’informations, consultez https://aka.ms/dotnet-test/mtp. The path to the project file to run (defaults to the current directory if there is only one project). - Chemin du fichier projet à exécuter (la valeur par défaut est le répertoire actif s'il n'y a qu'un seul projet). + The path to the project file to run (defaults to the current directory if there is only one project). @@ -1073,7 +1073,7 @@ Pour découvrir plus d’informations, consultez https://aka.ms/dotnet-test/mtp. (Default) - (Par défaut) + (Default) @@ -1108,7 +1108,7 @@ Pour découvrir plus d’informations, consultez https://aka.ms/dotnet-test/mtp. An error was encountered when reading '{0}': {1} - Une erreur est survenue pendant la lecture de « {0} » : {1} + An error was encountered when reading '{0}': {1} {0} is file path. {1} is exception message. @@ -1128,7 +1128,7 @@ Pour découvrir plus d’informations, consultez https://aka.ms/dotnet-test/mtp. error - erreur + error Used when reporting directive errors like "file(location): error: message". @@ -1194,7 +1194,7 @@ Pour découvrir plus d’informations, consultez https://aka.ms/dotnet-test/mtp. 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. - « dotnet » a reçu de manière inattendue moins de 4 octets du canal nommé « dotnet test ». + 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. @@ -1226,14 +1226,14 @@ Pour découvrir plus d’informations, consultez https://aka.ms/dotnet-test/mtp. There are several launch profiles with case-sensitive names, which isn't permitted: {0} Make the profile names distinct. - Il existe plusieurs profils de lancement avec des noms sensibles à la casse, ce qui n'est pas autorisé : + There are several launch profiles with case-sensitive names, which isn't permitted: {0} -Faites en sorte que les noms de profil soient distincts. +Make the profile names distinct. Duplicate directives are not supported: {0} - Les directives dupliquées ne sont pas prises en charge : {0} + Duplicate directives are not supported: {0} {0} is the directive type and name. @@ -1593,7 +1593,7 @@ Faites en sorte que les noms de profil soient distincts. The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. - La directive dans doit contenir un nom sans caractères spéciaux et une valeur facultative séparée par « {1} » comme « # :{0} Nom{1}Valeur ». + The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. {0} is the directive type like 'package' or 'sdk'. {1} is the expected separator like '@' or '='. @@ -1613,7 +1613,7 @@ Faites en sorte que les noms de profil soient distincts. The '#:project' directive is invalid: {0} - La directive « #:project » n’est pas valide : {0} + The '#:project' directive is invalid: {0} {0} is the inner error message. @@ -1638,22 +1638,22 @@ Faites en sorte que les noms de profil soient distincts. A launch profile with the name '{0}' doesn't exist. - Un profil de lancement avec le nom '{0}' n'existe pas. + A launch profile with the name '{0}' doesn't exist. The launch profile type '{0}' is not supported. - Le type de profil de lancement '{0}' n'est pas pris en charge. + The launch profile type '{0}' is not supported. A profile with the specified name isn't a valid JSON object. - Un profil avec le nom spécifié n'est pas un objet JSON valide. + A profile with the specified name isn't a valid JSON object. The 'profiles' property of the launch settings document is not a JSON object. - La propriété 'profiles' du document de paramètres de lancement n'est pas un objet JSON. + The 'profiles' property of the launch settings document is not a JSON object. @@ -1755,7 +1755,7 @@ L'outil '{1}' (version '{2}') a été correctement installé. L'entrée est ajou Missing name of '{0}'. - Nom manquant pour « {0} ». + Missing name of '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -1979,7 +1979,7 @@ L'outil '{1}' (version '{2}') a été correctement installé. L'entrée est ajou @@ -2467,7 +2467,7 @@ L'outil '{1}' (version '{2}') a été correctement installé. L'entrée est ajou Specify the output directory ({0}): - Spécifiez le répertoire de sortie ({0}) : + Specify the output directory ({0}): {0} is the default value @@ -2522,12 +2522,12 @@ L'outil '{1}' (version '{2}') a été correctement installé. L'entrée est ajou Invalid property name: {0} - Nom de propriété non valide : {0} + Invalid property name: {0} {0} is an inner exception message. The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. - La directive de propriété doit avoir deux parties séparées par '=' comme '#:property PropertyName=PropertyValue'. + The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. {Locked="#:property"} @@ -2537,7 +2537,7 @@ L'outil '{1}' (version '{2}') a été correctement installé. L'entrée est ajou @@ -2574,7 +2574,7 @@ La valeur par défaut est de publier une application dépendante du framework. Directives currently cannot contain double quotes ("). - Les directives ne peuvent actuellement pas contenir de guillemets doubles ("). + Directives currently cannot contain double quotes ("). @@ -3083,7 +3083,7 @@ Votre projet cible plusieurs frameworks. Spécifiez le framework à exécuter à Static graph restore is not supported for file-based apps. Remove the '#:property'. - La restauration de graphique statique n’est pas prise en charge pour les applications basées sur des fichiers. Supprimer la « #:property ». + Static graph restore is not supported for file-based apps. Remove the '#:property'. {Locked="#:property"} @@ -3634,7 +3634,7 @@ et les ID de package correspondants aux outils installés, utilisez la commande Unrecognized directive '{0}'. - Directive « {0} » non reconnue. + Unrecognized directive '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -3714,7 +3714,7 @@ et les ID de package correspondants aux outils installés, utilisez la commande A usable launch profile could not be located. - Impossible de localiser un profil de lancement utilisable. + A usable launch profile could not be located. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.it.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.it.xlf index ff2e8c986092..d8ded9eb3783 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.it.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.it.xlf @@ -94,7 +94,7 @@ @@ -186,7 +186,7 @@ Percorsi cercati: '{1}', '{2}'. Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. - Non è possibile convertire alcune direttive. Eseguire il file per visualizzare tutti gli errori di compilazione. Specificare '--force' per eseguire comunque la conversione. + Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. {Locked="--force"} @@ -236,7 +236,7 @@ Percorsi cercati: '{1}', '{2}'. @@ -460,12 +460,12 @@ Se non specificato, il file verrà generato all'interno della directory 'TestRes Defines the path of directory to run. If not specified, it defaults to the current directory. - Definisce il percorso della directory da eseguire. Se non specificato, per impostazione predefinita viene usata la directory corrente. + Defines the path of directory to run. If not specified, it defaults to the current directory. DIRECTORY_PATH - DIRECTORY_PATH + DIRECTORY_PATH @@ -745,12 +745,12 @@ Equivale a eliminare project.assets.json. Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. - Definisce il percorso del file progetto da eseguire (nome cartella o percorso completo). Se non specificato, per impostazione predefinita viene usata la directory corrente. + Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. PROJECT_PATH - PROJECT_PATH + PROJECT_PATH @@ -797,7 +797,7 @@ Se non esiste, la directory specificata verrà creata. Defines the path of the solution file to run. If not specified, it defaults to the current directory. - Definisce il percorso del file soluzione da eseguire. Se non specificato, per impostazione predefinita viene usata la directory corrente. + Defines the path of the solution file to run. If not specified, it defaults to the current directory. @@ -988,7 +988,7 @@ Per altre informazioni, vedere https://aka.ms/dotnet-test/mtp. The path to the project file to run (defaults to the current directory if there is only one project). - Percorso del file di progetto da eseguire. Se è presente un solo progetto, per impostazione predefinita viene usata la directory corrente. + The path to the project file to run (defaults to the current directory if there is only one project). @@ -1073,7 +1073,7 @@ Per altre informazioni, vedere https://aka.ms/dotnet-test/mtp. (Default) - (Predefinita) + (Default) @@ -1108,7 +1108,7 @@ Per altre informazioni, vedere https://aka.ms/dotnet-test/mtp. An error was encountered when reading '{0}': {1} - Si è verificato un errore durante la lettura di "{0}": {1} + An error was encountered when reading '{0}': {1} {0} is file path. {1} is exception message. @@ -1128,7 +1128,7 @@ Per altre informazioni, vedere https://aka.ms/dotnet-test/mtp. error - errore + error Used when reporting directive errors like "file(location): error: message". @@ -1194,7 +1194,7 @@ Per altre informazioni, vedere https://aka.ms/dotnet-test/mtp. 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. - 'dotnet' ha ricevuto inaspettatamente meno di 4 byte dal named pipe 'dotnet test'. + 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. @@ -1226,14 +1226,14 @@ Per altre informazioni, vedere https://aka.ms/dotnet-test/mtp. There are several launch profiles with case-sensitive names, which isn't permitted: {0} Make the profile names distinct. - Esistono diversi profili di avvio con nomi con distinzione tra maiuscole e minuscole, che non sono consentiti: + There are several launch profiles with case-sensitive names, which isn't permitted: {0} -Rendi distinti i nomi profilo. +Make the profile names distinct. Duplicate directives are not supported: {0} - Le direttive duplicate non supportate: {0} + Duplicate directives are not supported: {0} {0} is the directive type and name. @@ -1593,7 +1593,7 @@ Rendi distinti i nomi profilo. The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. - La direttiva deve contenere un nome senza caratteri speciali e un valore facoltativo delimitato da '{1}' come '#:{0}Nome {1}Valore'. + The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. {0} is the directive type like 'package' or 'sdk'. {1} is the expected separator like '@' or '='. @@ -1613,7 +1613,7 @@ Rendi distinti i nomi profilo. The '#:project' directive is invalid: {0} - La direttiva '#:project' non è valida: {0} + The '#:project' directive is invalid: {0} {0} is the inner error message. @@ -1638,22 +1638,22 @@ Rendi distinti i nomi profilo. A launch profile with the name '{0}' doesn't exist. - Non esiste un profilo di avvio con il nome '{0}'. + A launch profile with the name '{0}' doesn't exist. The launch profile type '{0}' is not supported. - Il tipo '{0}' del profilo di avvio non è supportato. + The launch profile type '{0}' is not supported. A profile with the specified name isn't a valid JSON object. - Un profilo con il nome specificato non è un oggetto JSON valido. + A profile with the specified name isn't a valid JSON object. The 'profiles' property of the launch settings document is not a JSON object. - La proprietà 'profiles' del documento delle impostazioni di avvio non è un oggetto JSON. + The 'profiles' property of the launch settings document is not a JSON object. @@ -1755,7 +1755,7 @@ Lo strumento '{1}' versione '{2}' è stato installato. La voce è stata aggiunta Missing name of '{0}'. - Manca il nome di '{0}'. + Missing name of '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -1979,7 +1979,7 @@ Lo strumento '{1}' versione '{2}' è stato installato. La voce è stata aggiunta @@ -2467,7 +2467,7 @@ Lo strumento '{1}' versione '{2}' è stato installato. La voce è stata aggiunta Specify the output directory ({0}): - Specifica la directory di output ({0}): + Specify the output directory ({0}): {0} is the default value @@ -2522,12 +2522,12 @@ Lo strumento '{1}' versione '{2}' è stato installato. La voce è stata aggiunta Invalid property name: {0} - Nome proprietà non valido: {0} + Invalid property name: {0} {0} is an inner exception message. The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. - La direttiva di proprietà deve avere due parti delimitate da '=', come '#:property PropertyName=PropertyValue'. + The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. {Locked="#:property"} @@ -2537,7 +2537,7 @@ Lo strumento '{1}' versione '{2}' è stato installato. La voce è stata aggiunta @@ -2574,7 +2574,7 @@ Per impostazione predefinita, viene generato un pacchetto dipendente dal framewo Directives currently cannot contain double quotes ("). - Le direttive attualmente non possono contenere virgolette doppie ("). + Directives currently cannot contain double quotes ("). @@ -3083,7 +3083,7 @@ Il progetto è destinato a più framework. Specificare il framework da eseguire Static graph restore is not supported for file-based apps. Remove the '#:property'. - Il ripristino statico del grafo non è supportato per le app basate su file. Rimuovere '#:property'. + Static graph restore is not supported for file-based apps. Remove the '#:property'. {Locked="#:property"} @@ -3634,7 +3634,7 @@ e gli ID pacchetto corrispondenti per gli strumenti installati usando il comando Unrecognized directive '{0}'. - Direttiva non riconosciuta '{0}'. + Unrecognized directive '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -3714,7 +3714,7 @@ e gli ID pacchetto corrispondenti per gli strumenti installati usando il comando A usable launch profile could not be located. - Non è stato trovato alcun profilo di avvio utilizzabile. + A usable launch profile could not be located. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ja.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ja.xlf index 40678fb35f74..373d63a6721b 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ja.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ja.xlf @@ -94,7 +94,7 @@ @@ -186,7 +186,7 @@ Paths searched: '{1}', '{2}'. Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. - 一部のディレクティブは変換できません。ファイルを実行して、すべてのコンパイル エラーを表示します。それでも変換する場合は '--force' を指定してください。 + Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. {Locked="--force"} @@ -236,7 +236,7 @@ Paths searched: '{1}', '{2}'. @@ -460,12 +460,12 @@ If not specified the file will be generated inside the default 'TestResults' dir Defines the path of directory to run. If not specified, it defaults to the current directory. - 実行するディレクトリのパスを定義します。指定しない場合は、既定で現在のディレクトリに設定されます。 + Defines the path of directory to run. If not specified, it defaults to the current directory. DIRECTORY_PATH - DIRECTORY_PATH + DIRECTORY_PATH @@ -745,12 +745,12 @@ This is equivalent to deleting project.assets.json. Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. - 実行するプロジェクト ファイルのパス (フォルダー名または完全パス) を定義します。指定しない場合は、既定で現在のディレクトリに設定されます。 + Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. PROJECT_PATH - PROJECT_PATH + PROJECT_PATH @@ -797,7 +797,7 @@ The specified directory will be created if it does not exist. Defines the path of the solution file to run. If not specified, it defaults to the current directory. - 実行するソリューション ファイルのパスを定義します。指定しない場合は、既定で現在のディレクトリに設定されます。 + Defines the path of the solution file to run. If not specified, it defaults to the current directory. @@ -988,7 +988,7 @@ See https://aka.ms/dotnet-test/mtp for more information. The path to the project file to run (defaults to the current directory if there is only one project). - 実行するプロジェクト ファイルへのパス (プロジェクトが 1 つのみの場合、既定は現在のディレクトリです)。 + The path to the project file to run (defaults to the current directory if there is only one project). @@ -1073,7 +1073,7 @@ See https://aka.ms/dotnet-test/mtp for more information. (Default) - (既定) + (Default) @@ -1108,7 +1108,7 @@ See https://aka.ms/dotnet-test/mtp for more information. An error was encountered when reading '{0}': {1} - '{0}' の読み取り中にエラーが発生しました: {1} + An error was encountered when reading '{0}': {1} {0} is file path. {1} is exception message. @@ -1128,7 +1128,7 @@ See https://aka.ms/dotnet-test/mtp for more information. error - エラー + error Used when reporting directive errors like "file(location): error: message". @@ -1194,7 +1194,7 @@ See https://aka.ms/dotnet-test/mtp for more information. 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. - 'dotnet' は 'dotnet test' 名前付きパイプから予期せず 4 バイト未満を受信しました。 + 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. @@ -1226,14 +1226,14 @@ See https://aka.ms/dotnet-test/mtp for more information. There are several launch profiles with case-sensitive names, which isn't permitted: {0} Make the profile names distinct. - 大文字と小文字が区別される名前の起動プロファイルがいくつかありますが、これは許可されていません: + There are several launch profiles with case-sensitive names, which isn't permitted: {0} -プロファイル名を区別できるようにしてください。 +Make the profile names distinct. Duplicate directives are not supported: {0} - 重複するディレクティブはサポートされていません: {0} + Duplicate directives are not supported: {0} {0} is the directive type and name. @@ -1593,7 +1593,7 @@ Make the profile names distinct. The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. - ディレクティブには、特殊文字を含まない名前と、'#:{0} Name{1}Value' などの '{1}' で区切られた省略可能な値を含める必要があります。 + The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. {0} is the directive type like 'package' or 'sdk'. {1} is the expected separator like '@' or '='. @@ -1613,7 +1613,7 @@ Make the profile names distinct. The '#:project' directive is invalid: {0} - '#:p roject' ディレクティブが無効です: {0} + The '#:project' directive is invalid: {0} {0} is the inner error message. @@ -1638,22 +1638,22 @@ Make the profile names distinct. A launch profile with the name '{0}' doesn't exist. - '{0} ' という名前の起動プロファイルは存在しません。 + A launch profile with the name '{0}' doesn't exist. The launch profile type '{0}' is not supported. - 起動プロファイルの種類 '{0}' はサポートされていません。 + The launch profile type '{0}' is not supported. A profile with the specified name isn't a valid JSON object. - 指定された名前のプロファイルは、有効な JSON オブジェクトではありません。 + A profile with the specified name isn't a valid JSON object. The 'profiles' property of the launch settings document is not a JSON object. - 起動設定のドキュメントの 'profiles' プロパティが JSON オブジェクトではありません。 + The 'profiles' property of the launch settings document is not a JSON object. @@ -1755,7 +1755,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Missing name of '{0}'. - '{0}' の名前がありません。 + Missing name of '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -1979,7 +1979,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man @@ -2467,7 +2467,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Specify the output directory ({0}): - 出力ディレクトリ ({0}) を指定します: + Specify the output directory ({0}): {0} is the default value @@ -2522,12 +2522,12 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Invalid property name: {0} - 無効なプロパティ名: {0} + Invalid property name: {0} {0} is an inner exception message. The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. - プロパティ ディレクティブには、'#:property PropertyName=PropertyValue' のように '=' で区切られた 2 つの部分が必要です。 + The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. {Locked="#:property"} @@ -2537,7 +2537,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man @@ -2574,7 +2574,7 @@ The default is to publish a framework-dependent application. Directives currently cannot contain double quotes ("). - ディレクティブには二重引用符 (") を含めることはできません。 + Directives currently cannot contain double quotes ("). @@ -3083,7 +3083,7 @@ Your project targets multiple frameworks. Specify which framework to run using ' Static graph restore is not supported for file-based apps. Remove the '#:property'. - 静的グラフの復元はファイルベースのアプリではサポートされていません。'#:property' を削除します。 + Static graph restore is not supported for file-based apps. Remove the '#:property'. {Locked="#:property"} @@ -3634,7 +3634,7 @@ and the corresponding package Ids for installed tools using the command Unrecognized directive '{0}'. - 認識されないディレクティブ '{0}' です。 + Unrecognized directive '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -3714,7 +3714,7 @@ and the corresponding package Ids for installed tools using the command A usable launch profile could not be located. - 使用可能な起動プロファイルが見つかりませんでした。 + A usable launch profile could not be located. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ko.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ko.xlf index b2f6c81c0d2e..6935ae03eb40 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ko.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ko.xlf @@ -94,7 +94,7 @@ @@ -186,7 +186,7 @@ Paths searched: '{1}', '{2}'. Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. - 일부 지시문을 변환할 수 없습니다. 파일을 실행하여 모든 컴파일 오류를 확인하세요. 변환을 강제로 진행하려면 '--force'를 지정하세요. + Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. {Locked="--force"} @@ -236,7 +236,7 @@ Paths searched: '{1}', '{2}'. @@ -460,12 +460,12 @@ If not specified the file will be generated inside the default 'TestResults' dir Defines the path of directory to run. If not specified, it defaults to the current directory. - 실행할 디렉터리의 경로를 정의합니다. 지정하지 않으면 기본적으로 현재 디렉터리가 사용됩니다. + Defines the path of directory to run. If not specified, it defaults to the current directory. DIRECTORY_PATH - DIRECTORY_PATH + DIRECTORY_PATH @@ -745,12 +745,12 @@ project.assets.json을 삭제하는 것과 동일합니다. Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. - 실행할 프로젝트 파일의 경로(폴더 이름 또는 전체 경로)를 정의합니다. 지정하지 않으면 기본적으로 현재 디렉터리가 사용됩니다. + Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. PROJECT_PATH - PROJECT_PATH + PROJECT_PATH @@ -797,7 +797,7 @@ The specified directory will be created if it does not exist. Defines the path of the solution file to run. If not specified, it defaults to the current directory. - 실행할 솔루션 파일의 경로를 정의합니다. 지정하지 않으면 기본적으로 현재 디렉터리가 사용됩니다. + Defines the path of the solution file to run. If not specified, it defaults to the current directory. @@ -988,7 +988,7 @@ See https://aka.ms/dotnet-test/mtp for more information. The path to the project file to run (defaults to the current directory if there is only one project). - 실행할 프로젝트 파일의 경로입니다(프로젝트가 하나만 있는 경우 현재 디렉터리로 기본 설정됨). + The path to the project file to run (defaults to the current directory if there is only one project). @@ -1073,7 +1073,7 @@ See https://aka.ms/dotnet-test/mtp for more information. (Default) - (기본값) + (Default) @@ -1108,7 +1108,7 @@ See https://aka.ms/dotnet-test/mtp for more information. An error was encountered when reading '{0}': {1} - '{0}'을 읽는 동안 오류가 발생했습니다. {1} + An error was encountered when reading '{0}': {1} {0} is file path. {1} is exception message. @@ -1128,7 +1128,7 @@ See https://aka.ms/dotnet-test/mtp for more information. error - 오류 + error Used when reporting directive errors like "file(location): error: message". @@ -1194,7 +1194,7 @@ See https://aka.ms/dotnet-test/mtp for more information. 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. - 'dotnet'이 'dotnet test'로 명명된 파이프에서 예기치 않게 4바이트 미만의 데이터를 받았습니다. + 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. @@ -1226,14 +1226,14 @@ See https://aka.ms/dotnet-test/mtp for more information. There are several launch profiles with case-sensitive names, which isn't permitted: {0} Make the profile names distinct. - 대/소문자를 구분하는 이름을 가진 여러 시작 프로필이 있으며 이는 허용되지 않습니다. + There are several launch profiles with case-sensitive names, which isn't permitted: {0} -고유한 프로필 이름을 사용하세요. +Make the profile names distinct. Duplicate directives are not supported: {0} - 중복 지시문은 지원되지 않습니다. {0} + Duplicate directives are not supported: {0} {0} is the directive type and name. @@ -1593,7 +1593,7 @@ Make the profile names distinct. The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. - 지시문에는 특수 문자가 없는 이름과 '#:{0} 이름{1}값'과 같이 '{1}'(으)로 구분된 선택적 값이 포함되어야 합니다. + The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. {0} is the directive type like 'package' or 'sdk'. {1} is the expected separator like '@' or '='. @@ -1613,7 +1613,7 @@ Make the profile names distinct. The '#:project' directive is invalid: {0} - '#:p roject' 지시문이 잘못되었습니다. {0} + The '#:project' directive is invalid: {0} {0} is the inner error message. @@ -1638,22 +1638,22 @@ Make the profile names distinct. A launch profile with the name '{0}' doesn't exist. - 이름이 '{0}'인 시작 프로필이 없습니다. + A launch profile with the name '{0}' doesn't exist. The launch profile type '{0}' is not supported. - 시작 프로필 형식 '{0}'은(는) 지원되지 않습니다. + The launch profile type '{0}' is not supported. A profile with the specified name isn't a valid JSON object. - 지정된 이름의 프로필은 유효한 JSON 개체가 아닙니다. + A profile with the specified name isn't a valid JSON object. The 'profiles' property of the launch settings document is not a JSON object. - 시작 설정 문서의 '프로필' 속성이 JSON 개체가 아닙니다. + The 'profiles' property of the launch settings document is not a JSON object. @@ -1755,7 +1755,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Missing name of '{0}'. - '{0}' 이름이 없습니다. + Missing name of '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -1979,7 +1979,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man @@ -2467,7 +2467,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Specify the output directory ({0}): - 출력 디렉터리 지정({0}): + Specify the output directory ({0}): {0} is the default value @@ -2522,12 +2522,12 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Invalid property name: {0} - 잘못된 속성 이름: {0} + Invalid property name: {0} {0} is an inner exception message. The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. - property 지시문에는 '#:property PropertyName=PropertyValue'와 같이 '='로 구분된 두 부분이 있어야 합니다. + The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. {Locked="#:property"} @@ -2537,7 +2537,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man @@ -2574,7 +2574,7 @@ The default is to publish a framework-dependent application. Directives currently cannot contain double quotes ("). - 지시문은 현재 큰따옴표(")를 포함할 수 없습니다. + Directives currently cannot contain double quotes ("). @@ -3083,7 +3083,7 @@ Your project targets multiple frameworks. Specify which framework to run using ' Static graph restore is not supported for file-based apps. Remove the '#:property'. - 정적 그래프 복원은 파일 기반 앱에서 지원되지 않습니다. '#:property'를 제거합니다. + Static graph restore is not supported for file-based apps. Remove the '#:property'. {Locked="#:property"} @@ -3634,7 +3634,7 @@ and the corresponding package Ids for installed tools using the command Unrecognized directive '{0}'. - 인식할 수 없는 지시문 '{0}'입니다. + Unrecognized directive '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -3714,7 +3714,7 @@ and the corresponding package Ids for installed tools using the command A usable launch profile could not be located. - 사용할 수 있는 시작 프로필을 찾을 수 없습니다. + A usable launch profile could not be located. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pl.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pl.xlf index bc9182e525a1..952dc2ec304c 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pl.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pl.xlf @@ -94,7 +94,7 @@ @@ -186,7 +186,7 @@ Przeszukane ścieżki: „{1}”, „{2}”. Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. - Nie można przekonwertować niektórych dyrektyw. Uruchom plik, aby wyświetlić wszystkie błędy kompilacji. Określ element „--force”, aby mimo to przekonwertować. + Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. {Locked="--force"} @@ -236,7 +236,7 @@ Przeszukane ścieżki: „{1}”, „{2}”. @@ -460,12 +460,12 @@ W katalogu domyślnym „TestResults” zostanie wygenerowany plik, jeśli nie z Defines the path of directory to run. If not specified, it defaults to the current directory. - Definiuje ścieżkę katalogu do uruchomienia. Jeśli nie zostanie określony, domyślnie będzie to bieżący katalog. + Defines the path of directory to run. If not specified, it defaults to the current directory. DIRECTORY_PATH - DIRECTORY_PATH + DIRECTORY_PATH @@ -745,12 +745,12 @@ Jest to równoważne usunięciu pliku project.assets.json. Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. - Definiuje ścieżkę pliku projektu do uruchomienia (nazwę folderu lub pełną ścieżkę). Jeśli nie zostanie określony, domyślnie będzie to bieżący katalog. + Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. PROJECT_PATH - PROJECT_PATH + PROJECT_PATH @@ -797,7 +797,7 @@ Jeśli określony katalog nie istnieje, zostanie utworzony. Defines the path of the solution file to run. If not specified, it defaults to the current directory. - Definiuje ścieżkę pliku rozwiązania do uruchomienia. Jeśli nie zostanie określony, domyślnie będzie to bieżący katalog. + Defines the path of the solution file to run. If not specified, it defaults to the current directory. @@ -988,7 +988,7 @@ Aby uzyskać więcej informacji, zobacz https://aka.ms/dotnet-test/mtp. The path to the project file to run (defaults to the current directory if there is only one project). - Ścieżka do pliku projektu, który ma zostać uruchomiony (w przypadku tylko jednego projektu wartością domyślną jest bieżący katalog). + The path to the project file to run (defaults to the current directory if there is only one project). @@ -1073,7 +1073,7 @@ Aby uzyskać więcej informacji, zobacz https://aka.ms/dotnet-test/mtp. (Default) - (Domyślne) + (Default) @@ -1108,7 +1108,7 @@ Aby uzyskać więcej informacji, zobacz https://aka.ms/dotnet-test/mtp. An error was encountered when reading '{0}': {1} - Napotkano błąd podczas odczytywania elementu „{0}”: {1} + An error was encountered when reading '{0}': {1} {0} is file path. {1} is exception message. @@ -1128,7 +1128,7 @@ Aby uzyskać więcej informacji, zobacz https://aka.ms/dotnet-test/mtp. error - błąd + error Used when reporting directive errors like "file(location): error: message". @@ -1194,7 +1194,7 @@ Aby uzyskać więcej informacji, zobacz https://aka.ms/dotnet-test/mtp. 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. - Element „dotnet” nieoczekiwanie odebrał mniej niż 4 bajty z nazwanego potoku "dotnet test". + 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. @@ -1226,14 +1226,14 @@ Aby uzyskać więcej informacji, zobacz https://aka.ms/dotnet-test/mtp. There are several launch profiles with case-sensitive names, which isn't permitted: {0} Make the profile names distinct. - Istnieje kilka profilów uruchamiania z nazwami z uwzględnieniem wielkości liter, co jest niedozwolone: + There are several launch profiles with case-sensitive names, which isn't permitted: {0} -Rozróżnij nazwy profilów. +Make the profile names distinct. Duplicate directives are not supported: {0} - Zduplikowane dyrektywy nie są obsługiwane: {0} + Duplicate directives are not supported: {0} {0} is the directive type and name. @@ -1593,7 +1593,7 @@ Rozróżnij nazwy profilów. The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. - Dyrektywa powinna zawierać nazwę bez znaków specjalnych i opcjonalną wartość rozdzieloną znakiem "{1}#:{0} Name{1}Value". + The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. {0} is the directive type like 'package' or 'sdk'. {1} is the expected separator like '@' or '='. @@ -1613,7 +1613,7 @@ Rozróżnij nazwy profilów. The '#:project' directive is invalid: {0} - Dyrektywa „#:project” jest nieprawidłowa: {0} + The '#:project' directive is invalid: {0} {0} is the inner error message. @@ -1638,22 +1638,22 @@ Rozróżnij nazwy profilów. A launch profile with the name '{0}' doesn't exist. - Profil uruchamiania o nazwie „{0}” nie istnieje. + A launch profile with the name '{0}' doesn't exist. The launch profile type '{0}' is not supported. - Typ profilu uruchamiania „{0}” nie jest obsługiwany. + The launch profile type '{0}' is not supported. A profile with the specified name isn't a valid JSON object. - Profil o określonej nazwie nie jest prawidłowym obiektem JSON. + A profile with the specified name isn't a valid JSON object. The 'profiles' property of the launch settings document is not a JSON object. - Właściwość „profiles” dokumentu ustawień uruchamiania nie jest obiektem JSON. + The 'profiles' property of the launch settings document is not a JSON object. @@ -1755,7 +1755,7 @@ Narzędzie „{1}” (wersja „{2}”) zostało pomyślnie zainstalowane. Wpis Missing name of '{0}'. - Brak nazwy „{0}”. + Missing name of '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -1979,7 +1979,7 @@ Narzędzie „{1}” (wersja „{2}”) zostało pomyślnie zainstalowane. Wpis @@ -2467,7 +2467,7 @@ Narzędzie „{1}” (wersja „{2}”) zostało pomyślnie zainstalowane. Wpis Specify the output directory ({0}): - Określ katalog wyjściowy ({0}): + Specify the output directory ({0}): {0} is the default value @@ -2522,12 +2522,12 @@ Narzędzie „{1}” (wersja „{2}”) zostało pomyślnie zainstalowane. Wpis Invalid property name: {0} - Nieprawidłowa nazwa właściwości: {0} + Invalid property name: {0} {0} is an inner exception message. The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. - Dyrektywa właściwości musi mieć dwie części oddzielone znakiem „=”, na przykład „#:property PropertyName=PropertyValue”. + The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. {Locked="#:property"} @@ -2537,7 +2537,7 @@ Narzędzie „{1}” (wersja „{2}”) zostało pomyślnie zainstalowane. Wpis @@ -2574,7 +2574,7 @@ Domyślnie publikowana jest aplikacja zależna od struktury. Directives currently cannot contain double quotes ("). - Dyrektywy nie mogą obecnie zawierać podwójnych cudzysłowów ("). + Directives currently cannot contain double quotes ("). @@ -3083,7 +3083,7 @@ Projekt ma wiele platform docelowych. Określ platformę do uruchomienia przy u Static graph restore is not supported for file-based apps. Remove the '#:property'. - Przywracanie statycznego grafu nie jest obsługiwane w przypadku aplikacji opartych na plikach. Usuń element „#:property”. + Static graph restore is not supported for file-based apps. Remove the '#:property'. {Locked="#:property"} @@ -3634,7 +3634,7 @@ i odpowiednie identyfikatory pakietów zainstalowanych narzędzi można znaleź Unrecognized directive '{0}'. - Nierozpoznana dyrektywa „{0}”. + Unrecognized directive '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -3714,7 +3714,7 @@ i odpowiednie identyfikatory pakietów zainstalowanych narzędzi można znaleź A usable launch profile could not be located. - Nie można odnaleźć nadającego się do użytku profilu uruchamiania. + A usable launch profile could not be located. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pt-BR.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pt-BR.xlf index be9c08f1ce8f..c0d1afd99daf 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pt-BR.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pt-BR.xlf @@ -94,7 +94,7 @@ @@ -186,7 +186,7 @@ Caminhos pesquisados: "{1}", "{2}". Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. - Algumas diretivas não podem ser convertidas. Execute o arquivo para ver todos os erros de compilação. Especifique '--force' para converter mesmo assim. + Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. {Locked="--force"} @@ -236,7 +236,7 @@ Caminhos pesquisados: "{1}", "{2}". @@ -460,12 +460,12 @@ Se não for especificado, o arquivo será gerado dentro do diretório padrão Defines the path of directory to run. If not specified, it defaults to the current directory. - Define o caminho do diretório a ser executado. Se não for especificado, o padrão será o diretório atual. + Defines the path of directory to run. If not specified, it defaults to the current directory. DIRECTORY_PATH - DIRECTORY_PATH + DIRECTORY_PATH @@ -745,12 +745,12 @@ Isso equivale a excluir o project.assets.json. Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. - Define o caminho do arquivo de projeto a ser executado (nome da pasta ou caminho completo). Se não for especificado, o padrão será o diretório atual. + Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. PROJECT_PATH - PROJECT_PATH + PROJECT_PATH @@ -797,7 +797,7 @@ O diretório especificado será criado se ele ainda não existir. Defines the path of the solution file to run. If not specified, it defaults to the current directory. - Define o caminho do arquivo de solução a ser executado. Se não for especificado, o padrão será o diretório atual. + Defines the path of the solution file to run. If not specified, it defaults to the current directory. @@ -988,7 +988,7 @@ Consulte https://aka.ms/dotnet-test/mtp para obter mais informações. The path to the project file to run (defaults to the current directory if there is only one project). - O caminho para o arquivo de projeto a ser executado (usará como padrão o diretório atual se houver apenas um projeto). + The path to the project file to run (defaults to the current directory if there is only one project). @@ -1073,7 +1073,7 @@ Consulte https://aka.ms/dotnet-test/mtp para obter mais informações. (Default) - (Padrão) + (Default) @@ -1108,7 +1108,7 @@ Consulte https://aka.ms/dotnet-test/mtp para obter mais informações. An error was encountered when reading '{0}': {1} - Ocorreu um erro ao ler '{0}': {1} + An error was encountered when reading '{0}': {1} {0} is file path. {1} is exception message. @@ -1128,7 +1128,7 @@ Consulte https://aka.ms/dotnet-test/mtp para obter mais informações. error - erro + error Used when reporting directive errors like "file(location): error: message". @@ -1194,7 +1194,7 @@ Consulte https://aka.ms/dotnet-test/mtp para obter mais informações. 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. - O 'dotnet' recebeu inesperadamente menos de 4 bytes do pipe nomeado 'dotnet test'. + 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. @@ -1226,14 +1226,14 @@ Consulte https://aka.ms/dotnet-test/mtp para obter mais informações. There are several launch profiles with case-sensitive names, which isn't permitted: {0} Make the profile names distinct. - Existem vários perfis de inicialização com nomes que diferenciam maiúsculas de minúsculas, o que não é permitido: + There are several launch profiles with case-sensitive names, which isn't permitted: {0} -Diferencie os nomes dos perfis. +Make the profile names distinct. Duplicate directives are not supported: {0} - Diretivas duplicadas não são suportadas:{0} + Duplicate directives are not supported: {0} {0} is the directive type and name. @@ -1593,7 +1593,7 @@ Diferencie os nomes dos perfis. The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. - A diretiva deve conter um nome sem caracteres especiais e um valor opcional separado por '{1}' como '#:{0} Nome{1}Valor'. + The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. {0} is the directive type like 'package' or 'sdk'. {1} is the expected separator like '@' or '='. @@ -1613,7 +1613,7 @@ Diferencie os nomes dos perfis. The '#:project' directive is invalid: {0} - A diretiva '#:project' é inválida:{0} + The '#:project' directive is invalid: {0} {0} is the inner error message. @@ -1638,22 +1638,22 @@ Diferencie os nomes dos perfis. A launch profile with the name '{0}' doesn't exist. - Um perfil de lançamento com o nome '{0}' não existe. + A launch profile with the name '{0}' doesn't exist. The launch profile type '{0}' is not supported. - Não há suporte para o tipo de perfil de inicialização '{0}'. + The launch profile type '{0}' is not supported. A profile with the specified name isn't a valid JSON object. - Um perfil com o nome especificado não é um objeto JSON válido. + A profile with the specified name isn't a valid JSON object. The 'profiles' property of the launch settings document is not a JSON object. - A propriedade 'perfis' do documento de configurações de inicialização não é um objeto JSON. + The 'profiles' property of the launch settings document is not a JSON object. @@ -1755,7 +1755,7 @@ A ferramenta '{1}' (versão '{2}') foi instalada com êxito. A entrada foi adici Missing name of '{0}'. - Nome de '{0}' ausente. + Missing name of '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -1979,7 +1979,7 @@ A ferramenta '{1}' (versão '{2}') foi instalada com êxito. A entrada foi adici @@ -2467,7 +2467,7 @@ A ferramenta '{1}' (versão '{2}') foi instalada com êxito. A entrada foi adici Specify the output directory ({0}): - Especificar o diretório de saída ({0}): + Specify the output directory ({0}): {0} is the default value @@ -2522,12 +2522,12 @@ A ferramenta '{1}' (versão '{2}') foi instalada com êxito. A entrada foi adici Invalid property name: {0} - Nome de propriedade inválido: {0} + Invalid property name: {0} {0} is an inner exception message. The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. - A diretiva de propriedade precisa ter duas partes separadas por '=' como '#:property PropertyName=PropertyValue'. + The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. {Locked="#:property"} @@ -2537,7 +2537,7 @@ A ferramenta '{1}' (versão '{2}') foi instalada com êxito. A entrada foi adici @@ -2574,7 +2574,7 @@ O padrão é publicar uma aplicação dependente de framework. Directives currently cannot contain double quotes ("). - No momento, as diretivas não podem conter aspas duplas ("). + Directives currently cannot contain double quotes ("). @@ -3083,7 +3083,7 @@ Ele tem diversas estruturas como destino. Especifique que estrutura executar usa Static graph restore is not supported for file-based apps. Remove the '#:property'. - A restauração de grafo estático não é suportada para aplicativos baseados em arquivos. Remova '#:property'. + Static graph restore is not supported for file-based apps. Remove the '#:property'. {Locked="#:property"} @@ -3634,7 +3634,7 @@ e as Ids de pacote correspondentes para as ferramentas instaladas usando o coman Unrecognized directive '{0}'. - Diretiva não reconhecida '{0}'. + Unrecognized directive '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -3714,7 +3714,7 @@ e as Ids de pacote correspondentes para as ferramentas instaladas usando o coman A usable launch profile could not be located. - Um perfil de inicialização utilizável não pôde ser localizado. + A usable launch profile could not be located. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ru.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ru.xlf index 694c64282058..e0611a0d0423 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ru.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ru.xlf @@ -94,7 +94,7 @@ @@ -186,7 +186,7 @@ Paths searched: '{1}', '{2}'. Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. - Некоторые директивы невозможно преобразовать. Запустите файл, чтобы увидеть все ошибки компиляции. Укажите параметр "--force", чтобы выполнить преобразование, невзирая на ошибки. + Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. {Locked="--force"} @@ -236,7 +236,7 @@ Paths searched: '{1}', '{2}'. @@ -460,12 +460,12 @@ If not specified the file will be generated inside the default 'TestResults' dir Defines the path of directory to run. If not specified, it defaults to the current directory. - Определяет путь к каталогу для выполнения. Если не указано, по умолчанию используется текущий каталог. + Defines the path of directory to run. If not specified, it defaults to the current directory. DIRECTORY_PATH - DIRECTORY_PATH + DIRECTORY_PATH @@ -745,12 +745,12 @@ This is equivalent to deleting project.assets.json. Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. - Определяет путь к файлу проекта для выполнения (имя папки или полный путь). Если не указано, по умолчанию используется текущий каталог. + Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. PROJECT_PATH - PROJECT_PATH + PROJECT_PATH @@ -797,7 +797,7 @@ The specified directory will be created if it does not exist. Defines the path of the solution file to run. If not specified, it defaults to the current directory. - Определяет путь к файлу решения, который следует запустить. Если не указано, по умолчанию используется текущий каталог. + Defines the path of the solution file to run. If not specified, it defaults to the current directory. @@ -988,7 +988,7 @@ See https://aka.ms/dotnet-test/mtp for more information. The path to the project file to run (defaults to the current directory if there is only one project). - Путь к выполняемому файлу проекта (по умолчанию — текущий каталог, если имеется только один проект). + The path to the project file to run (defaults to the current directory if there is only one project). @@ -1073,7 +1073,7 @@ See https://aka.ms/dotnet-test/mtp for more information. (Default) - (По умолчанию) + (Default) @@ -1108,7 +1108,7 @@ See https://aka.ms/dotnet-test/mtp for more information. An error was encountered when reading '{0}': {1} - Произошла ошибка при чтении "{0}": {1} + An error was encountered when reading '{0}': {1} {0} is file path. {1} is exception message. @@ -1128,7 +1128,7 @@ See https://aka.ms/dotnet-test/mtp for more information. error - ошибка + error Used when reporting directive errors like "file(location): error: message". @@ -1194,7 +1194,7 @@ See https://aka.ms/dotnet-test/mtp for more information. 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. - "dotnet" неожиданно получил менее 4 байт из именованного канала "dotnet test". + 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. @@ -1226,14 +1226,14 @@ See https://aka.ms/dotnet-test/mtp for more information. There are several launch profiles with case-sensitive names, which isn't permitted: {0} Make the profile names distinct. - Существует несколько профилей, имена которых различаются только регистром, что запрещено: + There are several launch profiles with case-sensitive names, which isn't permitted: {0} -Сделайте имена профилей разными. +Make the profile names distinct. Duplicate directives are not supported: {0} - Повторяющиеся директивы не поддерживаются: {0} + Duplicate directives are not supported: {0} {0} is the directive type and name. @@ -1593,7 +1593,7 @@ Make the profile names distinct. The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. - Директива должна содержать имя без специальных символов и необязательное значение, разделенные символом-разделителем "{1}", например "#:{0} Имя{1}Значение". + The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. {0} is the directive type like 'package' or 'sdk'. {1} is the expected separator like '@' or '='. @@ -1613,7 +1613,7 @@ Make the profile names distinct. The '#:project' directive is invalid: {0} - Недопустимая директива "#:project": {0} + The '#:project' directive is invalid: {0} {0} is the inner error message. @@ -1638,22 +1638,22 @@ Make the profile names distinct. A launch profile with the name '{0}' doesn't exist. - Профиль запуска с именем "{0}" не существует. + A launch profile with the name '{0}' doesn't exist. The launch profile type '{0}' is not supported. - Тип профиля запуска "{0}" не поддерживается. + The launch profile type '{0}' is not supported. A profile with the specified name isn't a valid JSON object. - Профиль с указанным именем не является допустимым объектом JSON. + A profile with the specified name isn't a valid JSON object. The 'profiles' property of the launch settings document is not a JSON object. - Свойство "profiles" документа параметров запуска не является объектом JSON. + The 'profiles' property of the launch settings document is not a JSON object. @@ -1755,7 +1755,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Missing name of '{0}'. - Отсутствует имя "{0}". + Missing name of '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -1979,7 +1979,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man @@ -2467,7 +2467,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Specify the output directory ({0}): - Укажите выходной каталог ({0}): + Specify the output directory ({0}): {0} is the default value @@ -2522,12 +2522,12 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Invalid property name: {0} - Недопустимое имя свойства: {0} + Invalid property name: {0} {0} is an inner exception message. The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. - Директива свойства должна иметь две части, разделенные символом "=", например "#:property PropertyName=PropertyValue". + The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. {Locked="#:property"} @@ -2537,7 +2537,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man @@ -2574,7 +2574,7 @@ The default is to publish a framework-dependent application. Directives currently cannot contain double quotes ("). - В директивах пока нельзя использовать двойные кавычки ("). + Directives currently cannot contain double quotes ("). @@ -3083,7 +3083,7 @@ Your project targets multiple frameworks. Specify which framework to run using ' Static graph restore is not supported for file-based apps. Remove the '#:property'. - Восстановление статического графа не поддерживается для приложений на основе файлов. Удалите "#:property". + Static graph restore is not supported for file-based apps. Remove the '#:property'. {Locked="#:property"} @@ -3635,7 +3635,7 @@ and the corresponding package Ids for installed tools using the command Unrecognized directive '{0}'. - Нераспознанная директива "{0}". + Unrecognized directive '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -3715,7 +3715,7 @@ and the corresponding package Ids for installed tools using the command A usable launch profile could not be located. - Не удалось найти подходящий для использования профиль запуска. + A usable launch profile could not be located. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.tr.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.tr.xlf index f5b9e9b3825a..24d365bdb0e0 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.tr.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.tr.xlf @@ -94,7 +94,7 @@ @@ -186,7 +186,7 @@ Aranan yollar: '{1}', '{2}'. Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. - Bazı yönergeler dönüştürülemez. Tüm derleme hatalarını görmek için dosyayı çalıştırın. Yine de dönüştürmek için '--force' belirtin. + Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. {Locked="--force"} @@ -236,7 +236,7 @@ Aranan yollar: '{1}', '{2}'. @@ -460,12 +460,12 @@ Belirtilmezse dosya varsayılan 'TestResults' dizini içinde oluşturulur. Defines the path of directory to run. If not specified, it defaults to the current directory. - Çalıştırılacak dizinin yolunu belirtir. Belirtilmezse, varsayılan olarak geçerli dizine ayarlar. + Defines the path of directory to run. If not specified, it defaults to the current directory. DIRECTORY_PATH - DIRECTORY_PATH + DIRECTORY_PATH @@ -745,12 +745,12 @@ project.assets.json öğesini silmeyle eşdeğerdir. Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. - Çalıştırılacak proje dosyasının yolunu (klasör adı veya tam yol) belirtir. Belirtilmezse, varsayılan olarak geçerli dizine ayarlar. + Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. PROJECT_PATH - PROJECT_PATH + PROJECT_PATH @@ -797,7 +797,7 @@ Belirtilen dizin yoksa oluşturulur. Defines the path of the solution file to run. If not specified, it defaults to the current directory. - Çalıştırılacak çözüm dosyasının yolunu belirtir. Belirtilmezse, varsayılan olarak geçerli dizine ayarlar. + Defines the path of the solution file to run. If not specified, it defaults to the current directory. @@ -988,7 +988,7 @@ Daha fazla bilgi için https://aka.ms/dotnet-test/mtp adresine bakın. The path to the project file to run (defaults to the current directory if there is only one project). - Çalıştırılacak proje dosyasının yolu (yalnızca bir proje varsa, geçerli dizin varsayılan olarak kullanılır). + The path to the project file to run (defaults to the current directory if there is only one project). @@ -1073,7 +1073,7 @@ Daha fazla bilgi için https://aka.ms/dotnet-test/mtp adresine bakın. (Default) - (Varsayılan) + (Default) @@ -1108,7 +1108,7 @@ Daha fazla bilgi için https://aka.ms/dotnet-test/mtp adresine bakın. An error was encountered when reading '{0}': {1} - ‘{0}’ okunurken bir hata oluştu: {1} + An error was encountered when reading '{0}': {1} {0} is file path. {1} is exception message. @@ -1128,7 +1128,7 @@ Daha fazla bilgi için https://aka.ms/dotnet-test/mtp adresine bakın. error - hata + error Used when reporting directive errors like "file(location): error: message". @@ -1194,7 +1194,7 @@ Daha fazla bilgi için https://aka.ms/dotnet-test/mtp adresine bakın. 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. - ‘dotnet’, ‘dotnet test’ adlandırılmış kanaldan beklenmedik bir şekilde 4 bayttan az veri aldı. + 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. @@ -1226,14 +1226,14 @@ Daha fazla bilgi için https://aka.ms/dotnet-test/mtp adresine bakın. There are several launch profiles with case-sensitive names, which isn't permitted: {0} Make the profile names distinct. - Adı büyük/küçük harfe duyarlı olan birkaç başlatma profili var ama bu duruma izin verilmiyor: + There are several launch profiles with case-sensitive names, which isn't permitted: {0} -Lütfen profil adlarını değiştirin. +Make the profile names distinct. Duplicate directives are not supported: {0} - Yinelenen yönergeler desteklenmez: {0} + Duplicate directives are not supported: {0} {0} is the directive type and name. @@ -1593,7 +1593,7 @@ Lütfen profil adlarını değiştirin. The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. - Yönerge, özel karakterler içermeyen bir ad ve ‘#:{0} Ad{1}Değer’ gibi '{1}' ile ayrılmış isteğe bağlı bir değer içermelidir. + The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. {0} is the directive type like 'package' or 'sdk'. {1} is the expected separator like '@' or '='. @@ -1613,7 +1613,7 @@ Lütfen profil adlarını değiştirin. The '#:project' directive is invalid: {0} - ‘#:project’ yönergesi geçersizdir: {0} + The '#:project' directive is invalid: {0} {0} is the inner error message. @@ -1638,22 +1638,22 @@ Lütfen profil adlarını değiştirin. A launch profile with the name '{0}' doesn't exist. - '{0}' adlı bir başlatma profili yok. + A launch profile with the name '{0}' doesn't exist. The launch profile type '{0}' is not supported. - '{0}' başlatma profili türü desteklenmiyor. + The launch profile type '{0}' is not supported. A profile with the specified name isn't a valid JSON object. - Belirtilen adla bir profil, geçerli bir JSON nesnesi değil. + A profile with the specified name isn't a valid JSON object. The 'profiles' property of the launch settings document is not a JSON object. - Başlatma ayarları belgesinin 'profiles' özelliği bir JSON nesnesi değil. + The 'profiles' property of the launch settings document is not a JSON object. @@ -1755,7 +1755,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Missing name of '{0}'. - '{0}' adı eksik. + Missing name of '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -1979,7 +1979,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man @@ -2467,7 +2467,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Specify the output directory ({0}): - Çıkış dizinini belirtin ({0}): + Specify the output directory ({0}): {0} is the default value @@ -2522,12 +2522,12 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Invalid property name: {0} - Geçersiz özellik adı: {0} + Invalid property name: {0} {0} is an inner exception message. The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. - Özellik yönergesi, ‘#:property PropertyName=PropertyValue’ gibi ‘=’ ile ayrılmış iki bölümden oluşmalıdır. + The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. {Locked="#:property"} @@ -2537,7 +2537,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man @@ -2574,7 +2574,7 @@ Varsayılan durum, çerçeveye bağımlı bir uygulama yayımlamaktır. Directives currently cannot contain double quotes ("). - Yönergeler şu anda çift tırnak (") içeremez. + Directives currently cannot contain double quotes ("). @@ -3083,7 +3083,7 @@ Projeniz birden fazla Framework'ü hedefliyor. '{0}' kullanarak hangi Framework' Static graph restore is not supported for file-based apps. Remove the '#:property'. - Dosya tabanlı uygulamalar için statik grafik geri yükleme desteklenmemektedir. ‘#:property’i kaldırın. + Static graph restore is not supported for file-based apps. Remove the '#:property'. {Locked="#:property"} @@ -3634,7 +3634,7 @@ karşılık gelen paket kimliklerini bulmak için Unrecognized directive '{0}'. - Tanınmayan yönerge '{0}'. + Unrecognized directive '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -3714,7 +3714,7 @@ karşılık gelen paket kimliklerini bulmak için A usable launch profile could not be located. - Kullanılabilir bir başlatma profili bulunamadı. + A usable launch profile could not be located. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hans.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hans.xlf index 725ed5df5480..f5d749e1d50d 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hans.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hans.xlf @@ -94,7 +94,7 @@ @@ -186,7 +186,7 @@ Paths searched: '{1}', '{2}'. Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. - 一些指令无法转换。运行该文件以查看所有编译错误。请指定 '--force' 以进行转换。 + Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. {Locked="--force"} @@ -236,7 +236,7 @@ Paths searched: '{1}', '{2}'. @@ -460,12 +460,12 @@ If not specified the file will be generated inside the default 'TestResults' dir Defines the path of directory to run. If not specified, it defaults to the current directory. - 定义要运行的目录的路径。如果未指定,则默认为当前目录。 + Defines the path of directory to run. If not specified, it defaults to the current directory. DIRECTORY_PATH - DIRECTORY_PATH + DIRECTORY_PATH @@ -745,12 +745,12 @@ This is equivalent to deleting project.assets.json. Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. - 定义要运行的项目文件的路径(文件夹名称或完整路径)。如果未指定,则默认为当前目录。 + Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. PROJECT_PATH - PROJECT_PATH + PROJECT_PATH @@ -797,7 +797,7 @@ The specified directory will be created if it does not exist. Defines the path of the solution file to run. If not specified, it defaults to the current directory. - 定义要运行的解决方案文件的路径。如果未指定,则默认为当前目录。 + Defines the path of the solution file to run. If not specified, it defaults to the current directory. @@ -988,7 +988,7 @@ See https://aka.ms/dotnet-test/mtp for more information. The path to the project file to run (defaults to the current directory if there is only one project). - 要运行的项目文件的路径(如果只有一个项目,则默认使用当前目录)。 + The path to the project file to run (defaults to the current directory if there is only one project). @@ -1073,7 +1073,7 @@ See https://aka.ms/dotnet-test/mtp for more information. (Default) - (默认值) + (Default) @@ -1108,7 +1108,7 @@ See https://aka.ms/dotnet-test/mtp for more information. An error was encountered when reading '{0}': {1} - 读取 ‘{0}’ 时遇到错误: {1} + An error was encountered when reading '{0}': {1} {0} is file path. {1} is exception message. @@ -1128,7 +1128,7 @@ See https://aka.ms/dotnet-test/mtp for more information. error - 错误 + error Used when reporting directive errors like "file(location): error: message". @@ -1194,7 +1194,7 @@ See https://aka.ms/dotnet-test/mtp for more information. 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. - 'dotnet' 意外从 'dotnet test' 命名管道接收了不到 4 个字节。 + 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. @@ -1226,14 +1226,14 @@ See https://aka.ms/dotnet-test/mtp for more information. There are several launch profiles with case-sensitive names, which isn't permitted: {0} Make the profile names distinct. - 存在多个名称区分大小写的启动配置文件,这是不允许的: + There are several launch profiles with case-sensitive names, which isn't permitted: {0} -将配置文件名称设为可区分的名称。 +Make the profile names distinct. Duplicate directives are not supported: {0} - 不支持重复指令: {0} + Duplicate directives are not supported: {0} {0} is the directive type and name. @@ -1593,7 +1593,7 @@ Make the profile names distinct. The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. - 该指令应包含一个不带特殊字符的名称,以及一个以 '#:{0} Name{1}Value' 等 ‘{1}’ 分隔的可选值。 + The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. {0} is the directive type like 'package' or 'sdk'. {1} is the expected separator like '@' or '='. @@ -1613,7 +1613,7 @@ Make the profile names distinct. The '#:project' directive is invalid: {0} - '#:project' 指令无效: {0} + The '#:project' directive is invalid: {0} {0} is the inner error message. @@ -1638,22 +1638,22 @@ Make the profile names distinct. A launch profile with the name '{0}' doesn't exist. - 名为“{0}”的启动配置文件不存在。 + A launch profile with the name '{0}' doesn't exist. The launch profile type '{0}' is not supported. - 不支持启动配置文件类型“{0}”。 + The launch profile type '{0}' is not supported. A profile with the specified name isn't a valid JSON object. - 具有指定名称的配置文件不是有效的 JSON 对象。 + A profile with the specified name isn't a valid JSON object. The 'profiles' property of the launch settings document is not a JSON object. - 启动设置文档的“profiles”属性不是 JSON 对象。 + The 'profiles' property of the launch settings document is not a JSON object. @@ -1755,7 +1755,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Missing name of '{0}'. - 缺少 '{0}' 的名称。 + Missing name of '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -1979,7 +1979,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man @@ -2467,7 +2467,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Specify the output directory ({0}): - 指定输出目录({0}): + Specify the output directory ({0}): {0} is the default value @@ -2522,12 +2522,12 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Invalid property name: {0} - 属性名无效: {0} + Invalid property name: {0} {0} is an inner exception message. The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. - 属性指令需要包含两个由 ‘=’ 分隔的部件,例如 '#:property PropertyName=PropertyValue'。 + The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. {Locked="#:property"} @@ -2537,7 +2537,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man @@ -2574,7 +2574,7 @@ The default is to publish a framework-dependent application. Directives currently cannot contain double quotes ("). - 指令当前不能包含双引号(")。 + Directives currently cannot contain double quotes ("). @@ -3083,7 +3083,7 @@ Your project targets multiple frameworks. Specify which framework to run using ' Static graph restore is not supported for file-based apps. Remove the '#:property'. - 基于文件的应用不支持静态图形还原。移除 '#:property'。 + Static graph restore is not supported for file-based apps. Remove the '#:property'. {Locked="#:property"} @@ -3634,7 +3634,7 @@ and the corresponding package Ids for installed tools using the command Unrecognized directive '{0}'. - 无法识别的指令 ‘{0}’。 + Unrecognized directive '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -3714,7 +3714,7 @@ and the corresponding package Ids for installed tools using the command A usable launch profile could not be located. - 找不到可用的启动配置文件。 + A usable launch profile could not be located. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hant.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hant.xlf index db6fc4bd2ddf..93e2b84eaee7 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hant.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hant.xlf @@ -94,7 +94,7 @@ @@ -186,7 +186,7 @@ Paths searched: '{1}', '{2}'. Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. - 無法轉換某些指示詞。執行檔案以查看所有編譯錯誤。指定 '--force' 以繼續轉換。 + Some directives cannot be converted. Run the file to see all compilation errors. Specify '--force' to convert anyway. {Locked="--force"} @@ -236,7 +236,7 @@ Paths searched: '{1}', '{2}'. @@ -460,12 +460,12 @@ If not specified the file will be generated inside the default 'TestResults' dir Defines the path of directory to run. If not specified, it defaults to the current directory. - 定義要執行的目錄路徑。如果未指定,則預設為目前目錄。 + Defines the path of directory to run. If not specified, it defaults to the current directory. DIRECTORY_PATH - DIRECTORY_PATH + DIRECTORY_PATH @@ -745,12 +745,12 @@ This is equivalent to deleting project.assets.json. Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. - 定義要執行的專案檔案路徑 (資料夾名稱或完整路徑)。如果未指定,則預設為目前目錄。 + Defines the path of the project file to run (folder name or full path). If not specified, it defaults to the current directory. PROJECT_PATH - PROJECT_PATH + PROJECT_PATH @@ -797,7 +797,7 @@ The specified directory will be created if it does not exist. Defines the path of the solution file to run. If not specified, it defaults to the current directory. - 定義要執行的解決方案檔案的路徑。如果未指定,則預設為目前目錄。 + Defines the path of the solution file to run. If not specified, it defaults to the current directory. @@ -988,7 +988,7 @@ See https://aka.ms/dotnet-test/mtp for more information. The path to the project file to run (defaults to the current directory if there is only one project). - 要執行之專案檔的路徑 (如果只有一個專案,預設為目前的目錄)。 + The path to the project file to run (defaults to the current directory if there is only one project). @@ -1073,7 +1073,7 @@ See https://aka.ms/dotnet-test/mtp for more information. (Default) - (預設) + (Default) @@ -1108,7 +1108,7 @@ See https://aka.ms/dotnet-test/mtp for more information. An error was encountered when reading '{0}': {1} - 讀取「{0}」時發生錯誤: {1} + An error was encountered when reading '{0}': {1} {0} is file path. {1} is exception message. @@ -1128,7 +1128,7 @@ See https://aka.ms/dotnet-test/mtp for more information. error - 錯誤 + error Used when reporting directive errors like "file(location): error: message". @@ -1194,7 +1194,7 @@ See https://aka.ms/dotnet-test/mtp for more information. 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. - 'dotnet' 從 'dotnet test' 具名管道意外接收到的資料少於 4 個位元組。 + 'dotnet' unexpectedly received less than 4 bytes from the 'dotnet test' named pipe. @@ -1226,14 +1226,14 @@ See https://aka.ms/dotnet-test/mtp for more information. There are several launch profiles with case-sensitive names, which isn't permitted: {0} Make the profile names distinct. - 數個啟動設定檔具有區分大小寫的名稱,這並不受允許: + There are several launch profiles with case-sensitive names, which isn't permitted: {0} -請讓設定檔名稱相異。 +Make the profile names distinct. Duplicate directives are not supported: {0} - 不支援重複的指示詞: {0} + Duplicate directives are not supported: {0} {0} is the directive type and name. @@ -1593,7 +1593,7 @@ Make the profile names distinct. The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. - 指示詞應包含不含特殊字元的名稱,以及 '{1}' 分隔的選用值,例如 '#:{0} Name{1}Value'。 + The directive should contain a name without special characters and an optional value separated by '{1}' like '#:{0} Name{1}Value'. {0} is the directive type like 'package' or 'sdk'. {1} is the expected separator like '@' or '='. @@ -1613,7 +1613,7 @@ Make the profile names distinct. The '#:project' directive is invalid: {0} - '#:project' 指示詞無效: {0} + The '#:project' directive is invalid: {0} {0} is the inner error message. @@ -1638,22 +1638,22 @@ Make the profile names distinct. A launch profile with the name '{0}' doesn't exist. - 名稱為 '{0}' 的啟動設定檔不存在。 + A launch profile with the name '{0}' doesn't exist. The launch profile type '{0}' is not supported. - 不支援啟動設定檔類型 '{0}'。 + The launch profile type '{0}' is not supported. A profile with the specified name isn't a valid JSON object. - 具有指定名稱的設定檔不是有效的 JSON 物件。 + A profile with the specified name isn't a valid JSON object. The 'profiles' property of the launch settings document is not a JSON object. - 啟動設定文件的 'profiles' 屬性並非 JSON 物件。 + The 'profiles' property of the launch settings document is not a JSON object. @@ -1755,7 +1755,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Missing name of '{0}'. - 缺少 '{0}' 的名稱。 + Missing name of '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -1979,7 +1979,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man @@ -2467,7 +2467,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Specify the output directory ({0}): - 指定輸出目錄 ({0}): + Specify the output directory ({0}): {0} is the default value @@ -2522,12 +2522,12 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man Invalid property name: {0} - 屬性名稱無效: {0} + Invalid property name: {0} {0} is an inner exception message. The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. - 屬性指示詞必須有兩個部分,其以 '=' 分隔,例如 '#:property PropertyName=PropertyValue'。 + The property directive needs to have two parts separated by '=' like '#:property PropertyName=PropertyValue'. {Locked="#:property"} @@ -2537,7 +2537,7 @@ Tool '{1}' (version '{2}') was successfully installed. Entry is added to the man @@ -2574,7 +2574,7 @@ The default is to publish a framework-dependent application. Directives currently cannot contain double quotes ("). - 指令目前不能包含雙引號 (")。 + Directives currently cannot contain double quotes ("). @@ -3083,7 +3083,7 @@ Your project targets multiple frameworks. Specify which framework to run using ' Static graph restore is not supported for file-based apps. Remove the '#:property'. - 檔案型應用程式不支援靜態圖表還原。移除 ''#:property'。 + Static graph restore is not supported for file-based apps. Remove the '#:property'. {Locked="#:property"} @@ -3634,7 +3634,7 @@ and the corresponding package Ids for installed tools using the command Unrecognized directive '{0}'. - 無法識別的指示詞 '{0}'。 + Unrecognized directive '{0}'. {0} is the directive name like 'package' or 'sdk'. @@ -3714,7 +3714,7 @@ and the corresponding package Ids for installed tools using the command A usable launch profile could not be located. - 找不到可用的啟動設定檔。 + A usable launch profile could not be located. From 758b3cb7d57fd487916b20ad45dc940e67770375 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 20 Dec 2025 02:04:50 +0000 Subject: [PATCH 360/392] Update dependencies from https://github.com/dotnet/dotnet build 295233 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.HostModel, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.Platforms, Microsoft.WindowsDesktop.App.Internal (Version 10.0.3-servicing.25618.108 -> 10.0.3-servicing.25618.116) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.3 -> 10.0.3) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.25618.108 -> 10.0.0-preview.25618.116) Microsoft.Build (Version 18.0.9 -> 18.0.9) Microsoft.Build.Localization (Version 18.0.9-servicing-25618-108 -> 18.0.9-servicing-25618-116) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.2-rc.11908 -> 7.0.2-rc.11916) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.103 -> 10.0.103) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.25618.108 -> 5.0.0-2.25618.116) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.25618.108 -> 2.0.0-preview.1.25618.116) Microsoft.DiaSymReader (Version 2.2.3 -> 2.2.3) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.25618.108 -> 10.0.0-beta.25618.116) Microsoft.FSharp.Compiler (Version 14.0.103-servicing.25618.108 -> 14.0.103-servicing.25618.116) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.1-release-25618-108 -> 18.0.1-release-25618-116) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.103-servicing.25618.108 -> 10.0.103-servicing.25618.116) Microsoft.Web.Xdt (Version 3.2.3 -> 3.2.3) System.CommandLine (Version 2.0.3 -> 2.0.3) --- NuGet.config | 2 +- eng/Version.Details.props | 126 ++++++------ eng/Version.Details.xml | 392 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 262 insertions(+), 262 deletions(-) diff --git a/NuGet.config b/NuGet.config index 8a174103e744..5d5c1c868f86 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index aa734b23a2b1..17f1460bfc76 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.3-servicing.25618.108 - 10.0.3-servicing.25618.108 - 10.0.3-servicing.25618.108 - 10.0.3-servicing.25618.108 + 10.0.3-servicing.25618.116 + 10.0.3-servicing.25618.116 + 10.0.3-servicing.25618.116 + 10.0.3-servicing.25618.116 10.0.3 - 10.0.3-servicing.25618.108 + 10.0.3-servicing.25618.116 10.0.3 10.0.3 10.0.3 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.25618.108 + 10.0.3-servicing.25618.116 10.0.3 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.25618.108 + 10.0.3-servicing.25618.116 10.0.3 - 10.0.3-servicing.25618.108 - 10.0.3-servicing.25618.108 - 10.0.0-preview.25618.108 + 10.0.3-servicing.25618.116 + 10.0.3-servicing.25618.116 + 10.0.0-preview.25618.116 10.0.3 10.0.3 18.0.9 - 18.0.9-servicing-25618-108 - 7.0.2-rc.11908 + 18.0.9-servicing-25618-116 + 7.0.2-rc.11916 10.0.103 - 5.0.0-2.25618.108 - 5.0.0-2.25618.108 - 5.0.0-2.25618.108 - 5.0.0-2.25618.108 - 5.0.0-2.25618.108 - 5.0.0-2.25618.108 - 5.0.0-2.25618.108 - 10.0.0-preview.25618.108 - 5.0.0-2.25618.108 - 5.0.0-2.25618.108 - 2.0.0-preview.1.25618.108 + 5.0.0-2.25618.116 + 5.0.0-2.25618.116 + 5.0.0-2.25618.116 + 5.0.0-2.25618.116 + 5.0.0-2.25618.116 + 5.0.0-2.25618.116 + 5.0.0-2.25618.116 + 10.0.0-preview.25618.116 + 5.0.0-2.25618.116 + 5.0.0-2.25618.116 + 2.0.0-preview.1.25618.116 2.2.3 - 10.0.0-beta.25618.108 - 10.0.0-beta.25618.108 - 10.0.0-beta.25618.108 - 10.0.0-beta.25618.108 - 10.0.0-beta.25618.108 - 10.0.0-beta.25618.108 + 10.0.0-beta.25618.116 + 10.0.0-beta.25618.116 + 10.0.0-beta.25618.116 + 10.0.0-beta.25618.116 + 10.0.0-beta.25618.116 + 10.0.0-beta.25618.116 10.0.3 10.0.3 - 10.0.3-servicing.25618.108 - 10.0.3-servicing.25618.108 - 10.0.0-beta.25618.108 - 10.0.0-beta.25618.108 + 10.0.3-servicing.25618.116 + 10.0.3-servicing.25618.116 + 10.0.0-beta.25618.116 + 10.0.0-beta.25618.116 10.0.3 10.0.3 10.0.3 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 14.0.103-servicing.25618.108 + 14.0.103-servicing.25618.116 10.0.3 - 5.0.0-2.25618.108 - 5.0.0-2.25618.108 - 10.0.3-servicing.25618.108 + 5.0.0-2.25618.116 + 5.0.0-2.25618.116 + 10.0.3-servicing.25618.116 10.0.3 10.0.3 10.0.0-preview.7.25377.103 - 10.0.0-preview.25618.108 - 10.0.3-servicing.25618.108 - 18.0.1-release-25618-108 + 10.0.0-preview.25618.116 + 10.0.3-servicing.25618.116 + 18.0.1-release-25618-116 10.0.3 - 10.0.3-servicing.25618.108 + 10.0.3-servicing.25618.116 10.0.103 10.0.103 10.0.103 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.103 10.0.103 10.0.103 - 10.0.103-servicing.25618.108 + 10.0.103-servicing.25618.116 10.0.103 - 10.0.103-servicing.25618.108 + 10.0.103-servicing.25618.116 10.0.103 10.0.103 - 10.0.103-servicing.25618.108 - 18.0.1-release-25618-108 - 18.0.1-release-25618-108 + 10.0.103-servicing.25618.116 + 18.0.1-release-25618-116 + 18.0.1-release-25618-116 3.2.3 10.0.3 - 10.0.3-servicing.25618.108 + 10.0.3-servicing.25618.116 10.0.3 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 - 7.0.2-rc.11908 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 + 7.0.2-rc.11916 10.0.3 2.0.3 10.0.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c42a0b1d0d57..cad424227269 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c - + https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 1757646605cb1e0635c3bf40c8b9433732661065 + 882ed0b3b33af854c2455a23e8bf99f268ff244c diff --git a/global.json b/global.json index fd4eb4911479..6d33f9f0a493 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25618.108", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25618.108", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25618.116", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25618.116", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 17a7549bbb7f3c8848a191478c2c9b42d2e9e19b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 18:43:36 +0100 Subject: [PATCH 361/392] [release/10.0.1xx] Avoid discarding file-like arguments in `dotnet file.cs` invocations (#52266) Co-authored-by: Jan Jones --- src/Cli/dotnet/Program.cs | 8 ++++---- test/dotnet.Tests/CommandTests/Run/RunFileTests.cs | 11 +++++++++++ 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/src/Cli/dotnet/Program.cs b/src/Cli/dotnet/Program.cs index e57fe3a5635f..93eb19c463ba 100644 --- a/src/Cli/dotnet/Program.cs +++ b/src/Cli/dotnet/Program.cs @@ -305,19 +305,19 @@ internal static int ProcessArgs(string[] args, TimeSpan startupTime) { // If we didn't match any built-in commands, and a C# file path is the first argument, // parse as `dotnet run --file file.cs ..rest_of_args` instead. - if (parseResult.GetValue(Parser.DotnetSubCommand) is { } unmatchedCommandOrFile - && VirtualProjectBuildingCommand.IsValidEntryPointPath(unmatchedCommandOrFile)) + if (parseResult.GetResult(Parser.DotnetSubCommand) is { Tokens: [{ Type: TokenType.Argument, Value: { } } unmatchedCommandOrFile] } + && VirtualProjectBuildingCommand.IsValidEntryPointPath(unmatchedCommandOrFile.Value)) { List otherTokens = new(parseResult.Tokens.Count - 1); foreach (var token in parseResult.Tokens) { - if (token.Type != TokenType.Argument || token.Value != unmatchedCommandOrFile) + if (token != unmatchedCommandOrFile) { otherTokens.Add(token.Value); } } - parseResult = Parser.Parse(["run", "--file", unmatchedCommandOrFile, .. otherTokens]); + parseResult = Parser.Parse(["run", "--file", unmatchedCommandOrFile.Value, .. otherTokens]); InvokeBuiltInCommand(parseResult, out var exitCode); return exitCode; diff --git a/test/dotnet.Tests/CommandTests/Run/RunFileTests.cs b/test/dotnet.Tests/CommandTests/Run/RunFileTests.cs index f93de5174d5a..145200be148c 100644 --- a/test/dotnet.Tests/CommandTests/Run/RunFileTests.cs +++ b/test/dotnet.Tests/CommandTests/Run/RunFileTests.cs @@ -263,6 +263,17 @@ Release config Hello from Program Release config """); + + // https://github.com/dotnet/sdk/issues/52108 + new DotnetCommand(Log, "Program.cs", "Program.cs") + .WithWorkingDirectory(testInstance.Path) + .Execute() + .Should().Pass() + .And.HaveStdOut(""" + echo args:Program.cs + Hello from Program + Release config + """); } /// From 4053d4cc41fd27cc634d36f29b9f28ad6ab5e08d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 7 Jan 2026 02:01:46 +0000 Subject: [PATCH 362/392] Update dependencies --- NuGet.config | 2 +- eng/Version.Details.props | 126 ++++++------ eng/Version.Details.xml | 392 +++++++++++++++++++------------------- eng/common/tools.ps1 | 13 +- global.json | 4 +- 5 files changed, 272 insertions(+), 265 deletions(-) diff --git a/NuGet.config b/NuGet.config index 5d5c1c868f86..560696ed4e88 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 17f1460bfc76..5e10e03275ce 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.3-servicing.25618.116 - 10.0.3-servicing.25618.116 - 10.0.3-servicing.25618.116 - 10.0.3-servicing.25618.116 + 10.0.3-servicing.26055.111 + 10.0.3-servicing.26055.111 + 10.0.3-servicing.26055.111 + 10.0.3-servicing.26055.111 10.0.3 - 10.0.3-servicing.25618.116 + 10.0.3-servicing.26055.111 10.0.3 10.0.3 10.0.3 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.25618.116 + 10.0.3-servicing.26055.111 10.0.3 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.25618.116 + 10.0.3-servicing.26055.111 10.0.3 - 10.0.3-servicing.25618.116 - 10.0.3-servicing.25618.116 - 10.0.0-preview.25618.116 + 10.0.3-servicing.26055.111 + 10.0.3-servicing.26055.111 + 10.0.0-preview.26055.111 10.0.3 10.0.3 18.0.9 - 18.0.9-servicing-25618-116 - 7.0.2-rc.11916 + 18.0.9-servicing-26055-111 + 7.0.2-rc.5611 10.0.103 - 5.0.0-2.25618.116 - 5.0.0-2.25618.116 - 5.0.0-2.25618.116 - 5.0.0-2.25618.116 - 5.0.0-2.25618.116 - 5.0.0-2.25618.116 - 5.0.0-2.25618.116 - 10.0.0-preview.25618.116 - 5.0.0-2.25618.116 - 5.0.0-2.25618.116 - 2.0.0-preview.1.25618.116 + 5.0.0-2.26055.111 + 5.0.0-2.26055.111 + 5.0.0-2.26055.111 + 5.0.0-2.26055.111 + 5.0.0-2.26055.111 + 5.0.0-2.26055.111 + 5.0.0-2.26055.111 + 10.0.0-preview.26055.111 + 5.0.0-2.26055.111 + 5.0.0-2.26055.111 + 2.0.0-preview.1.26055.111 2.2.3 - 10.0.0-beta.25618.116 - 10.0.0-beta.25618.116 - 10.0.0-beta.25618.116 - 10.0.0-beta.25618.116 - 10.0.0-beta.25618.116 - 10.0.0-beta.25618.116 + 10.0.0-beta.26055.111 + 10.0.0-beta.26055.111 + 10.0.0-beta.26055.111 + 10.0.0-beta.26055.111 + 10.0.0-beta.26055.111 + 10.0.0-beta.26055.111 10.0.3 10.0.3 - 10.0.3-servicing.25618.116 - 10.0.3-servicing.25618.116 - 10.0.0-beta.25618.116 - 10.0.0-beta.25618.116 + 10.0.3-servicing.26055.111 + 10.0.3-servicing.26055.111 + 10.0.0-beta.26055.111 + 10.0.0-beta.26055.111 10.0.3 10.0.3 10.0.3 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 14.0.103-servicing.25618.116 + 14.0.103-servicing.26055.111 10.0.3 - 5.0.0-2.25618.116 - 5.0.0-2.25618.116 - 10.0.3-servicing.25618.116 + 5.0.0-2.26055.111 + 5.0.0-2.26055.111 + 10.0.3-servicing.26055.111 10.0.3 10.0.3 10.0.0-preview.7.25377.103 - 10.0.0-preview.25618.116 - 10.0.3-servicing.25618.116 - 18.0.1-release-25618-116 + 10.0.0-preview.26055.111 + 10.0.3-servicing.26055.111 + 18.0.1-release-26055-111 10.0.3 - 10.0.3-servicing.25618.116 + 10.0.3-servicing.26055.111 10.0.103 10.0.103 10.0.103 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.103 10.0.103 10.0.103 - 10.0.103-servicing.25618.116 + 10.0.103-servicing.26055.111 10.0.103 - 10.0.103-servicing.25618.116 + 10.0.103-servicing.26055.111 10.0.103 10.0.103 - 10.0.103-servicing.25618.116 - 18.0.1-release-25618-116 - 18.0.1-release-25618-116 + 10.0.103-servicing.26055.111 + 18.0.1-release-26055-111 + 18.0.1-release-26055-111 3.2.3 10.0.3 - 10.0.3-servicing.25618.116 + 10.0.3-servicing.26055.111 10.0.3 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 - 7.0.2-rc.11916 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 + 7.0.2-rc.5611 10.0.3 2.0.3 10.0.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cad424227269..39d724540acd 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 882ed0b3b33af854c2455a23e8bf99f268ff244c + 68282276aba776ff485c66ffd6c207f26e77cfd6 diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index bef4affa4a41..049fe6db994e 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -560,19 +560,26 @@ function LocateVisualStudio([object]$vsRequirements = $null){ }) } - if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } + if (!$vsRequirements) { + if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { + $vsRequirements = $GlobalJson.tools.vs + } else { + $vsRequirements = $null + } + } + $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if (Get-Member -InputObject $vsRequirements -Name 'version') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { $args += '-version' $args += $vsRequirements.version } - if (Get-Member -InputObject $vsRequirements -Name 'components') { + if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component diff --git a/global.json b/global.json index 6d33f9f0a493..90b1a8dcc5e4 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25618.116", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25618.116", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26055.111", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26055.111", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From ac5c56a5e8a42063dd0b98adc6c3f60a16d298bf Mon Sep 17 00:00:00 2001 From: Jan Jones Date: Tue, 6 Jan 2026 13:39:50 +0100 Subject: [PATCH 363/392] Update osx arm64 helix images --- .vsts-ci.yml | 2 +- .vsts-pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index b7fc54598d53..da2f7c724ae7 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -270,7 +270,7 @@ extends: name: Azure Pipelines vmImage: macOS-latest os: macOS - helixTargetQueue: osx.13.arm64 + helixTargetQueue: osx.15.arm64 populateInternalRuntimeVariables: true runtimeSourceProperties: /p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) macOSJobParameterSets: diff --git a/.vsts-pr.yml b/.vsts-pr.yml index 3ff8cd21cfb9..f535573120a9 100644 --- a/.vsts-pr.yml +++ b/.vsts-pr.yml @@ -77,7 +77,7 @@ stages: name: Azure Pipelines vmImage: macOS-latest os: macOS - helixTargetQueue: osx.13.arm64.open + helixTargetQueue: osx.15.arm64.open macOSJobParameterSets: - categoryName: TestBuild targetArchitecture: arm64 From dc26e67b9296cc04460b055cbef4359e69e4eed0 Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Thu, 8 Jan 2026 08:09:42 +0100 Subject: [PATCH 364/392] Fix test --- .../CommandTests/Test/GivenDotnetTestBuildsAndRunsTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/dotnet.Tests/CommandTests/Test/GivenDotnetTestBuildsAndRunsTests.cs b/test/dotnet.Tests/CommandTests/Test/GivenDotnetTestBuildsAndRunsTests.cs index 23855c3cb442..0e6fd2239247 100644 --- a/test/dotnet.Tests/CommandTests/Test/GivenDotnetTestBuildsAndRunsTests.cs +++ b/test/dotnet.Tests/CommandTests/Test/GivenDotnetTestBuildsAndRunsTests.cs @@ -224,14 +224,14 @@ public void RunMultipleTestProjectsWithDifferentFailures_ShouldReturnExitCodeGen CommandResult result = new DotnetTestCommand(Log, disableNewOutput: false) .WithWorkingDirectory(testInstance.Path) - .Execute("--minimum-expected-tests 2", + .Execute("--minimum-expected-tests", "2", MicrosoftTestingPlatformOptions.ConfigurationOption.Name, configuration); if (!TestContext.IsLocalized()) { Assert.Matches(RegexPatternHelper.GenerateProjectRegexPattern("TestProject", TestingConstants.ZeroTestsRan, true, configuration, "8"), result.StdOut); Assert.Matches(RegexPatternHelper.GenerateProjectRegexPattern("OtherTestProject", TestingConstants.Failed, true, configuration, "2"), result.StdOut); - Assert.Matches(RegexPatternHelper.GenerateProjectRegexPattern("AnotherTestProject", TestingConstants.Failed, true, configuration, "9"), result.StdOut); + Assert.Matches(RegexPatternHelper.GenerateProjectRegexPattern("AnotherTestProject", TestingConstants.Passed, true, configuration), result.StdOut); result.StdOut .Should().Contain("Test run summary: Failed!") From 80d4001206b86a550700a0078cb3b9358b7aa163 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 9 Jan 2026 02:01:33 +0000 Subject: [PATCH 365/392] Update dependencies from https://github.com/microsoft/testfx build 20260108.8 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25617.6 -> To Version 2.1.0-preview.26058.8 MSTest From Version 4.1.0-preview.25617.6 -> To Version 4.1.0-preview.26058.8 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index ce52b97e743a..6efed0a5c735 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.25617.6 - 4.1.0-preview.25617.6 + 2.1.0-preview.26058.8 + 4.1.0-preview.26058.8 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e0f23a86ae1e..6d28c9aad3a6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 68282276aba776ff485c66ffd6c207f26e77cfd6 - + https://github.com/microsoft/testfx - e183a03b1e200baa83f3b00b83633338d356581a + 8ff26e06efe38900f718adc844bd731cbe84e163 - + https://github.com/microsoft/testfx - e183a03b1e200baa83f3b00b83633338d356581a + 8ff26e06efe38900f718adc844bd731cbe84e163 https://github.com/dotnet/dotnet From dcd1abd17e2dacd20ddb6515b02df3b0dba7e7aa Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 9 Jan 2026 02:01:54 +0000 Subject: [PATCH 366/392] Update dependencies from https://github.com/microsoft/testfx build 20260108.8 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.26058.8 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.26058.8 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 424b83f08831..dad48051afab 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -150,8 +150,8 @@ This file should be imported by eng/Versions.props 10.0.0-beta.25605.3 10.0.0-beta.25605.3 - 2.1.0-preview.25617.6 - 4.1.0-preview.25617.6 + 2.1.0-preview.26058.8 + 4.1.0-preview.26058.8 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 798df8e8a0e9..e66e455cb713 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -556,13 +556,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet fad253f51b461736dfd3cd9c15977bb7493becef - + https://github.com/microsoft/testfx - e183a03b1e200baa83f3b00b83633338d356581a + 8ff26e06efe38900f718adc844bd731cbe84e163 - + https://github.com/microsoft/testfx - e183a03b1e200baa83f3b00b83633338d356581a + 8ff26e06efe38900f718adc844bd731cbe84e163 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 1b1a7a22de60638110ecd34e8ad24fc123b1c777 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 9 Jan 2026 05:54:02 +0000 Subject: [PATCH 367/392] [release/10.0.1xx] Source code updates from dotnet/dotnet (#52372) [release/10.0.1xx] Source code updates from dotnet/dotnet --- NuGet.config | 2 +- eng/Version.Details.props | 128 ++++++------- eng/Version.Details.xml | 394 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 264 insertions(+), 264 deletions(-) diff --git a/NuGet.config b/NuGet.config index 560696ed4e88..dbbf4f6290b4 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index ce52b97e743a..bb3db15e7ada 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.3-servicing.26055.111 - 10.0.3-servicing.26055.111 - 10.0.3-servicing.26055.111 - 10.0.3-servicing.26055.111 + 10.0.3-servicing.26057.111 + 10.0.3-servicing.26057.111 + 10.0.3-servicing.26057.111 + 10.0.3-servicing.26057.111 10.0.3 - 10.0.3-servicing.26055.111 + 10.0.3-servicing.26057.111 10.0.3 10.0.3 10.0.3 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.26055.111 + 10.0.3-servicing.26057.111 10.0.3 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.26055.111 + 10.0.3-servicing.26057.111 10.0.3 - 10.0.3-servicing.26055.111 - 10.0.3-servicing.26055.111 - 10.0.0-preview.26055.111 + 10.0.3-servicing.26057.111 + 10.0.3-servicing.26057.111 + 10.0.0-preview.26057.111 10.0.3 10.0.3 - 18.0.9 - 18.0.9-servicing-26055-111 - 7.0.2-rc.5611 + 18.0.10 + 18.0.10-servicing-26057-111 + 7.0.2-rc.5811 10.0.103 - 5.0.0-2.26055.111 - 5.0.0-2.26055.111 - 5.0.0-2.26055.111 - 5.0.0-2.26055.111 - 5.0.0-2.26055.111 - 5.0.0-2.26055.111 - 5.0.0-2.26055.111 - 10.0.0-preview.26055.111 - 5.0.0-2.26055.111 - 5.0.0-2.26055.111 - 2.0.0-preview.1.26055.111 + 5.0.0-2.26057.111 + 5.0.0-2.26057.111 + 5.0.0-2.26057.111 + 5.0.0-2.26057.111 + 5.0.0-2.26057.111 + 5.0.0-2.26057.111 + 5.0.0-2.26057.111 + 10.0.0-preview.26057.111 + 5.0.0-2.26057.111 + 5.0.0-2.26057.111 + 2.0.0-preview.1.26057.111 2.2.3 - 10.0.0-beta.26055.111 - 10.0.0-beta.26055.111 - 10.0.0-beta.26055.111 - 10.0.0-beta.26055.111 - 10.0.0-beta.26055.111 - 10.0.0-beta.26055.111 + 10.0.0-beta.26057.111 + 10.0.0-beta.26057.111 + 10.0.0-beta.26057.111 + 10.0.0-beta.26057.111 + 10.0.0-beta.26057.111 + 10.0.0-beta.26057.111 10.0.3 10.0.3 - 10.0.3-servicing.26055.111 - 10.0.3-servicing.26055.111 - 10.0.0-beta.26055.111 - 10.0.0-beta.26055.111 + 10.0.3-servicing.26057.111 + 10.0.3-servicing.26057.111 + 10.0.0-beta.26057.111 + 10.0.0-beta.26057.111 10.0.3 10.0.3 10.0.3 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 14.0.103-servicing.26055.111 + 14.0.103-servicing.26057.111 10.0.3 - 5.0.0-2.26055.111 - 5.0.0-2.26055.111 - 10.0.3-servicing.26055.111 + 5.0.0-2.26057.111 + 5.0.0-2.26057.111 + 10.0.3-servicing.26057.111 10.0.3 10.0.3 10.0.0-preview.7.25377.103 - 10.0.0-preview.26055.111 - 10.0.3-servicing.26055.111 - 18.0.1-release-26055-111 + 10.0.0-preview.26057.111 + 10.0.3-servicing.26057.111 + 18.0.1-release-26057-111 10.0.3 - 10.0.3-servicing.26055.111 + 10.0.3-servicing.26057.111 10.0.103 10.0.103 10.0.103 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.103 10.0.103 10.0.103 - 10.0.103-servicing.26055.111 + 10.0.103-servicing.26057.111 10.0.103 - 10.0.103-servicing.26055.111 + 10.0.103-servicing.26057.111 10.0.103 10.0.103 - 10.0.103-servicing.26055.111 - 18.0.1-release-26055-111 - 18.0.1-release-26055-111 + 10.0.103-servicing.26057.111 + 18.0.1-release-26057-111 + 18.0.1-release-26057-111 3.2.3 10.0.3 - 10.0.3-servicing.26055.111 + 10.0.3-servicing.26057.111 10.0.3 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 - 7.0.2-rc.5611 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 + 7.0.2-rc.5811 10.0.3 2.0.3 10.0.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e0f23a86ae1e..77d1ca1c8572 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 68282276aba776ff485c66ffd6c207f26e77cfd6 + 4ef9fba1ed958b047163527960c27baf2883f835 diff --git a/global.json b/global.json index 90b1a8dcc5e4..b5fa2cead1a7 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26055.111", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26055.111", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26057.111", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26057.111", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 2e318310e3d33fab7066542c1a2ff4a4e072afac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Jan 2026 07:45:45 +0000 Subject: [PATCH 368/392] Reset files to release/10.0.2xx Reset patterns: - global.json - NuGet.config - eng/Version.Details.xml - eng/Version.Details.props - eng/common/* --- NuGet.config | 6 +- eng/Version.Details.props | 404 +++++----- eng/Version.Details.xml | 801 +++++++++---------- eng/common/internal-feed-operations.ps1 | 2 +- eng/common/post-build/nuget-verification.ps1 | 2 +- eng/common/tools.ps1 | 19 +- global.json | 6 +- 7 files changed, 624 insertions(+), 616 deletions(-) diff --git a/NuGet.config b/NuGet.config index dbbf4f6290b4..7e04985571cd 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,8 @@ - + + @@ -39,6 +40,9 @@ + + + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 5492d0e769cc..1ed75535bbc4 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -5,149 +5,167 @@ This file should be imported by eng/Versions.props --> - - 10.0.3-servicing.26057.111 - 10.0.3-servicing.26057.111 - 10.0.3-servicing.26057.111 - 10.0.3-servicing.26057.111 - 10.0.3 - 10.0.3-servicing.26057.111 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3-servicing.26057.111 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3-servicing.26057.111 - 10.0.3 - 10.0.3-servicing.26057.111 - 10.0.3-servicing.26057.111 - 10.0.0-preview.26057.111 - 10.0.3 - 10.0.3 - 18.0.10 - 18.0.10-servicing-26057-111 - 7.0.2-rc.5811 - 10.0.103 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 10.0.0-preview.26057.111 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 2.0.0-preview.1.26057.111 - 2.2.3 - 10.0.0-beta.26057.111 - 10.0.0-beta.26057.111 - 10.0.0-beta.26057.111 - 10.0.0-beta.26057.111 - 10.0.0-beta.26057.111 - 10.0.0-beta.26057.111 - 10.0.3 - 10.0.3 - 10.0.3-servicing.26057.111 - 10.0.3-servicing.26057.111 - 10.0.0-beta.26057.111 - 10.0.0-beta.26057.111 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 14.0.103-servicing.26057.111 - 10.0.3 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 10.0.3-servicing.26057.111 - 10.0.3 - 10.0.3 - 10.0.0-preview.7.25377.103 - 10.0.0-preview.26057.111 - 10.0.3-servicing.26057.111 - 18.0.1-release-26057-111 - 10.0.3 - 10.0.3-servicing.26057.111 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103-servicing.26057.111 - 10.0.103 - 10.0.103-servicing.26057.111 - 10.0.103 - 10.0.103 - 10.0.103-servicing.26057.111 - 18.0.1-release-26057-111 - 18.0.1-release-26057-111 - 3.2.3 - 10.0.3 - 10.0.3-servicing.26057.111 - 10.0.3 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 10.0.3 - 2.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 + + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + + 10.0.1-servicing.25569.105 + 10.0.1-servicing.25569.105 + 10.0.1-servicing.25569.105 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 10.0.0-beta.25569.105 + 2.0.0-preview.1.25569.105 + 2.2.1-beta.25569.105 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.0-beta.25569.105 + 10.0.0-beta.25569.105 + 10.0.0-beta.25569.105 + 10.0.0-beta.25569.105 + 10.0.0-beta.25569.105 + 3.2.1-servicing.25569.105 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 2.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 2.1.0 + + 10.0.0-preview.7.25377.103 + + 18.3.0-preview-25610-02 + 18.3.0-preview-25610-02 + + 15.1.200-servicing.25605.1 + + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + + 18.3.0-preview-25609-01 + 18.3.0-preview-25609-01 + 18.3.0-preview-25609-01 + + 10.0.0-preview.25552.2 + 10.0.0-preview.25552.2 + 10.0.0-preview.25552.2 + + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 - 2.1.0-preview.26058.8 - 4.1.0-preview.26058.8 + 2.1.0-preview.25571.1 + 4.1.0-preview.25571.1 - + + $(MicrosoftTemplateEngineAbstractionsPackageVersion) + $(MicrosoftTemplateEngineAuthoringTemplateVerifierPackageVersion) + $(MicrosoftTemplateEngineEdgePackageVersion) + $(MicrosoftTemplateEngineMocksPackageVersion) + $(MicrosoftTemplateEngineOrchestratorRunnableProjectsPackageVersion) + $(MicrosoftTemplateEngineTestHelperPackageVersion) + $(MicrosoftTemplateEngineUtilsPackageVersion) + $(MicrosoftTemplateSearchCommonPackageVersion) + $(MicrosoftTemplateSearchTemplateDiscoveryPackageVersion) + $(dotnetdevcertsPackageVersion) $(dotnetuserjwtsPackageVersion) $(dotnetusersecretsPackageVersion) @@ -170,37 +188,13 @@ This file should be imported by eng/Versions.props $(MicrosoftAspNetCoreMetadataPackageVersion) $(MicrosoftAspNetCoreMvcAnalyzersPackageVersion) $(MicrosoftAspNetCoreMvcApiAnalyzersPackageVersion) - $(MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion) $(MicrosoftAspNetCoreTestHostPackageVersion) $(MicrosoftBclAsyncInterfacesPackageVersion) - $(MicrosoftBuildPackageVersion) - $(MicrosoftBuildLocalizationPackageVersion) - $(MicrosoftBuildNuGetSdkResolverPackageVersion) $(MicrosoftBuildTasksGitPackageVersion) - $(MicrosoftCodeAnalysisPackageVersion) - $(MicrosoftCodeAnalysisBuildClientPackageVersion) - $(MicrosoftCodeAnalysisCSharpPackageVersion) - $(MicrosoftCodeAnalysisCSharpCodeStylePackageVersion) - $(MicrosoftCodeAnalysisCSharpFeaturesPackageVersion) - $(MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion) - $(MicrosoftCodeAnalysisPublicApiAnalyzersPackageVersion) - $(MicrosoftCodeAnalysisRazorToolingInternalPackageVersion) - $(MicrosoftCodeAnalysisWorkspacesCommonPackageVersion) - $(MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion) $(MicrosoftDeploymentDotNetReleasesPackageVersion) $(MicrosoftDiaSymReaderPackageVersion) - $(MicrosoftDotNetArcadeSdkPackageVersion) - $(MicrosoftDotNetBuildTasksInstallersPackageVersion) - $(MicrosoftDotNetBuildTasksTemplatingPackageVersion) - $(MicrosoftDotNetBuildTasksWorkloadsPackageVersion) - $(MicrosoftDotNetHelixSdkPackageVersion) - $(MicrosoftDotNetSignToolPackageVersion) $(MicrosoftDotNetWebItemTemplates100PackageVersion) $(MicrosoftDotNetWebProjectTemplates100PackageVersion) - $(MicrosoftDotnetWinFormsProjectTemplatesPackageVersion) - $(MicrosoftDotNetWpfProjectTemplatesPackageVersion) - $(MicrosoftDotNetXliffTasksPackageVersion) - $(MicrosoftDotNetXUnitExtensionsPackageVersion) $(MicrosoftExtensionsConfigurationIniPackageVersion) $(MicrosoftExtensionsDependencyModelPackageVersion) $(MicrosoftExtensionsFileProvidersAbstractionsPackageVersion) @@ -210,17 +204,11 @@ This file should be imported by eng/Versions.props $(MicrosoftExtensionsLoggingAbstractionsPackageVersion) $(MicrosoftExtensionsLoggingConsolePackageVersion) $(MicrosoftExtensionsObjectPoolPackageVersion) - $(MicrosoftFSharpCompilerPackageVersion) $(MicrosoftJSInteropPackageVersion) - $(MicrosoftNetCompilersToolsetPackageVersion) - $(MicrosoftNetCompilersToolsetFrameworkPackageVersion) $(MicrosoftNETHostModelPackageVersion) $(MicrosoftNETILLinkTasksPackageVersion) $(MicrosoftNETRuntimeEmscripten3156Cachewinx64PackageVersion) - $(MicrosoftNETRuntimeEmscriptenSdkInternalPackageVersion) - $(MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion) $(MicrosoftNETSdkWindowsDesktopPackageVersion) - $(MicrosoftNETTestSdkPackageVersion) $(MicrosoftNETCoreAppRefPackageVersion) $(MicrosoftNETCorePlatformsPackageVersion) $(MicrosoftSourceLinkAzureReposGitPackageVersion) @@ -228,37 +216,10 @@ This file should be imported by eng/Versions.props $(MicrosoftSourceLinkCommonPackageVersion) $(MicrosoftSourceLinkGitHubPackageVersion) $(MicrosoftSourceLinkGitLabPackageVersion) - $(MicrosoftTemplateEngineAbstractionsPackageVersion) - $(MicrosoftTemplateEngineAuthoringTemplateVerifierPackageVersion) - $(MicrosoftTemplateEngineEdgePackageVersion) - $(MicrosoftTemplateEngineMocksPackageVersion) - $(MicrosoftTemplateEngineOrchestratorRunnableProjectsPackageVersion) - $(MicrosoftTemplateEngineTestHelperPackageVersion) - $(MicrosoftTemplateEngineUtilsPackageVersion) - $(MicrosoftTemplateSearchCommonPackageVersion) - $(MicrosoftTemplateSearchTemplateDiscoveryPackageVersion) - $(MicrosoftTestPlatformBuildPackageVersion) - $(MicrosoftTestPlatformCLIPackageVersion) $(MicrosoftWebXdtPackageVersion) $(MicrosoftWin32SystemEventsPackageVersion) $(MicrosoftWindowsDesktopAppInternalPackageVersion) $(MicrosoftWindowsDesktopAppRefPackageVersion) - $(NuGetBuildTasksPackageVersion) - $(NuGetBuildTasksConsolePackageVersion) - $(NuGetBuildTasksPackPackageVersion) - $(NuGetCommandLineXPlatPackageVersion) - $(NuGetCommandsPackageVersion) - $(NuGetCommonPackageVersion) - $(NuGetConfigurationPackageVersion) - $(NuGetCredentialsPackageVersion) - $(NuGetDependencyResolverCorePackageVersion) - $(NuGetFrameworksPackageVersion) - $(NuGetLibraryModelPackageVersion) - $(NuGetLocalizationPackageVersion) - $(NuGetPackagingPackageVersion) - $(NuGetProjectModelPackageVersion) - $(NuGetProtocolPackageVersion) - $(NuGetVersioningPackageVersion) $(SystemCodeDomPackageVersion) $(SystemCommandLinePackageVersion) $(SystemComponentModelCompositionPackageVersion) @@ -283,6 +244,61 @@ This file should be imported by eng/Versions.props $(SystemWindowsExtensionsPackageVersion) $(NETStandardLibraryRefPackageVersion) + + $(MicrosoftNETRuntimeEmscriptenSdkInternalPackageVersion) + + $(MicrosoftBuildPackageVersion) + $(MicrosoftBuildLocalizationPackageVersion) + + $(MicrosoftFSharpCompilerPackageVersion) + + $(MicrosoftCodeAnalysisPackageVersion) + $(MicrosoftCodeAnalysisBuildClientPackageVersion) + $(MicrosoftCodeAnalysisCSharpPackageVersion) + $(MicrosoftCodeAnalysisCSharpCodeStylePackageVersion) + $(MicrosoftCodeAnalysisCSharpFeaturesPackageVersion) + $(MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion) + $(MicrosoftCodeAnalysisExternalAccessHotReloadPackageVersion) + $(MicrosoftCodeAnalysisPublicApiAnalyzersPackageVersion) + $(MicrosoftCodeAnalysisWorkspacesCommonPackageVersion) + $(MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion) + $(MicrosoftNetCompilersToolsetPackageVersion) + $(MicrosoftNetCompilersToolsetFrameworkPackageVersion) + + $(MicrosoftBuildNuGetSdkResolverPackageVersion) + $(NuGetBuildTasksPackageVersion) + $(NuGetBuildTasksConsolePackageVersion) + $(NuGetBuildTasksPackPackageVersion) + $(NuGetCommandLineXPlatPackageVersion) + $(NuGetCommandsPackageVersion) + $(NuGetCommonPackageVersion) + $(NuGetConfigurationPackageVersion) + $(NuGetCredentialsPackageVersion) + $(NuGetDependencyResolverCorePackageVersion) + $(NuGetFrameworksPackageVersion) + $(NuGetLibraryModelPackageVersion) + $(NuGetLocalizationPackageVersion) + $(NuGetPackagingPackageVersion) + $(NuGetProjectModelPackageVersion) + $(NuGetProtocolPackageVersion) + $(NuGetVersioningPackageVersion) + + $(MicrosoftNETTestSdkPackageVersion) + $(MicrosoftTestPlatformBuildPackageVersion) + $(MicrosoftTestPlatformCLIPackageVersion) + + $(MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion) + $(MicrosoftCodeAnalysisRazorToolingInternalPackageVersion) + $(MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion) + + $(MicrosoftDotNetArcadeSdkPackageVersion) + $(MicrosoftDotNetBuildTasksInstallersPackageVersion) + $(MicrosoftDotNetBuildTasksTemplatingPackageVersion) + $(MicrosoftDotNetBuildTasksWorkloadsPackageVersion) + $(MicrosoftDotNetHelixSdkPackageVersion) + $(MicrosoftDotNetSignToolPackageVersion) + $(MicrosoftDotNetXliffTasksPackageVersion) + $(MicrosoftDotNetXUnitExtensionsPackageVersion) $(MicrosoftTestingPlatformPackageVersion) $(MSTestPackageVersion) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 42c2caf0ecc7..7592ec421964 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef @@ -68,170 +68,170 @@ https://github.com/dotnet/dotnet 6a953e76162f3f079405f80e28664fa51b136740 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/msbuild + 2960e90f194e80f8f664ac573d456058bc4f5cd9 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/msbuild + 2960e90f194e80f8f664ac573d456058bc4f5cd9 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/fsharp + 89d788641914c5d0b87fddfa11f4df0b5cfaa73d - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/microsoft/vstest + bbee830b0ef18eb5b4aa5daee65ae35a34f8c132 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/microsoft/vstest + bbee830b0ef18eb5b4aa5daee65ae35a34f8c132 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/microsoft/vstest + bbee830b0ef18eb5b4aa5daee65ae35a34f8c132 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/razor + 191feab170b690f6a4923072d1b6f6e00272d8a7 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/razor + 191feab170b690f6a4923072d1b6f6e00272d8a7 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/razor + 191feab170b690f6a4923072d1b6f6e00272d8a7 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 - - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - + https://github.com/microsoft/testfx - 8ff26e06efe38900f718adc844bd731cbe84e163 + 43e592148ac1c7916908477bdffcf2a345affa6d - + https://github.com/microsoft/testfx - 8ff26e06efe38900f718adc844bd731cbe84e163 + 43e592148ac1c7916908477bdffcf2a345affa6d - - https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef diff --git a/eng/common/internal-feed-operations.ps1 b/eng/common/internal-feed-operations.ps1 index c282d3ae403a..92b77347d990 100644 --- a/eng/common/internal-feed-operations.ps1 +++ b/eng/common/internal-feed-operations.ps1 @@ -26,7 +26,7 @@ function SetupCredProvider { $url = 'https://raw.githubusercontent.com/microsoft/artifacts-credprovider/master/helpers/installcredprovider.ps1' Write-Host "Writing the contents of 'installcredprovider.ps1' locally..." - Invoke-WebRequest $url -UseBasicParsing -OutFile installcredprovider.ps1 + Invoke-WebRequest $url -OutFile installcredprovider.ps1 Write-Host 'Installing plugin...' .\installcredprovider.ps1 -Force diff --git a/eng/common/post-build/nuget-verification.ps1 b/eng/common/post-build/nuget-verification.ps1 index eea88e653c91..ac5c69ffcac5 100644 --- a/eng/common/post-build/nuget-verification.ps1 +++ b/eng/common/post-build/nuget-verification.ps1 @@ -65,7 +65,7 @@ if ($NuGetExePath) { Write-Host "Downloading nuget.exe from $nugetExeUrl..." $ProgressPreference = 'SilentlyContinue' try { - Invoke-WebRequest $nugetExeUrl -UseBasicParsing -OutFile $downloadedNuGetExe + Invoke-WebRequest $nugetExeUrl -OutFile $downloadedNuGetExe $ProgressPreference = 'Continue' } catch { $ProgressPreference = 'Continue' diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 049fe6db994e..578705ee4dbd 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -277,7 +277,7 @@ function GetDotNetInstallScript([string] $dotnetRoot) { Retry({ Write-Host "GET $uri" - Invoke-WebRequest $uri -UseBasicParsing -OutFile $installScript + Invoke-WebRequest $uri -OutFile $installScript }) } @@ -510,7 +510,7 @@ function InitializeXCopyMSBuild([string]$packageVersion, [bool]$install) { Write-Host "Downloading $packageName $packageVersion" $ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit Retry({ - Invoke-WebRequest "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/flat2/$packageName/$packageVersion/$packageName.$packageVersion.nupkg" -UseBasicParsing -OutFile $packagePath + Invoke-WebRequest "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/flat2/$packageName/$packageVersion/$packageName.$packageVersion.nupkg" -OutFile $packagePath }) if (!(Test-Path $packagePath)) { @@ -556,30 +556,23 @@ function LocateVisualStudio([object]$vsRequirements = $null){ Write-Host "Downloading vswhere $vswhereVersion" $ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit Retry({ - Invoke-WebRequest "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/vswhere/$vswhereVersion/vswhere.exe" -UseBasicParsing -OutFile $vswhereExe + Invoke-WebRequest "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/vswhere/$vswhereVersion/vswhere.exe" -OutFile $vswhereExe }) } - if (!$vsRequirements) { - if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { - $vsRequirements = $GlobalJson.tools.vs - } else { - $vsRequirements = $null - } - } - + if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'version') { $args += '-version' $args += $vsRequirements.version } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'components') { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component diff --git a/global.json b/global.json index b5fa2cead1a7..0daa834cedbd 100644 --- a/global.json +++ b/global.json @@ -7,7 +7,7 @@ "errorMessage": "The .NET SDK is not installed or is not configured correctly. Please run ./build to install the correct SDK version locally." }, "tools": { - "dotnet": "10.0.101", + "dotnet": "10.0.100", "runtimes": { "dotnet": [ "$(MicrosoftNETCorePlatformsPackageVersion)" @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26057.111", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26057.111", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25605.3", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25605.3", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 5f80649249dc717fa082e7a543401fa9de6424ad Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 10 Jan 2026 02:01:26 +0000 Subject: [PATCH 369/392] Update dependencies from https://github.com/microsoft/testfx build 20260109.2 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.26058.8 -> To Version 2.1.0-preview.26059.2 MSTest From Version 4.1.0-preview.26058.8 -> To Version 4.1.0-preview.26059.2 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 5492d0e769cc..7e6930bffc8c 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.26058.8 - 4.1.0-preview.26058.8 + 2.1.0-preview.26059.2 + 4.1.0-preview.26059.2 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 42c2caf0ecc7..6c6d98a8b595 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/microsoft/testfx - 8ff26e06efe38900f718adc844bd731cbe84e163 + d61d2db2a58b6baea78f5cd2402335dfd311c7c7 - + https://github.com/microsoft/testfx - 8ff26e06efe38900f718adc844bd731cbe84e163 + d61d2db2a58b6baea78f5cd2402335dfd311c7c7 https://github.com/dotnet/dotnet From b654dc5d6442257b067b18d93880689716e3f050 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 10 Jan 2026 02:01:36 +0000 Subject: [PATCH 370/392] Update dependencies from https://github.com/microsoft/testfx build 20260109.2 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.26059.2 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.26059.2 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index dad48051afab..511da046f7ca 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -150,8 +150,8 @@ This file should be imported by eng/Versions.props 10.0.0-beta.25605.3 10.0.0-beta.25605.3 - 2.1.0-preview.26058.8 - 4.1.0-preview.26058.8 + 2.1.0-preview.26059.2 + 4.1.0-preview.26059.2 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e66e455cb713..8f3fd9ac215c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -556,13 +556,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet fad253f51b461736dfd3cd9c15977bb7493becef - + https://github.com/microsoft/testfx - 8ff26e06efe38900f718adc844bd731cbe84e163 + d61d2db2a58b6baea78f5cd2402335dfd311c7c7 - + https://github.com/microsoft/testfx - 8ff26e06efe38900f718adc844bd731cbe84e163 + d61d2db2a58b6baea78f5cd2402335dfd311c7c7 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 62c89f87a76bbb1e41180d4a0c63e3bda41f2af2 Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Mon, 12 Jan 2026 23:46:42 +0100 Subject: [PATCH 371/392] Fix test --- .../CommandTests/Test/GivenDotnetTestBuildsAndRunsTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/dotnet.Tests/CommandTests/Test/GivenDotnetTestBuildsAndRunsTests.cs b/test/dotnet.Tests/CommandTests/Test/GivenDotnetTestBuildsAndRunsTests.cs index 033d929a9e1f..307e257ed6c1 100644 --- a/test/dotnet.Tests/CommandTests/Test/GivenDotnetTestBuildsAndRunsTests.cs +++ b/test/dotnet.Tests/CommandTests/Test/GivenDotnetTestBuildsAndRunsTests.cs @@ -278,14 +278,14 @@ public void RunMultipleTestProjectsWithDifferentFailures_ShouldReturnExitCodeGen CommandResult result = new DotnetTestCommand(Log, disableNewOutput: false) .WithWorkingDirectory(testInstance.Path) - .Execute("--minimum-expected-tests 2", + .Execute("--minimum-expected-tests", "2", "-c", configuration); if (!TestContext.IsLocalized()) { Assert.Matches(RegexPatternHelper.GenerateProjectRegexPattern("TestProject", TestingConstants.ZeroTestsRan, true, configuration, "8"), result.StdOut); Assert.Matches(RegexPatternHelper.GenerateProjectRegexPattern("OtherTestProject", TestingConstants.Failed, true, configuration, "2"), result.StdOut); - Assert.Matches(RegexPatternHelper.GenerateProjectRegexPattern("AnotherTestProject", TestingConstants.Failed, true, configuration, "9"), result.StdOut); + Assert.Matches(RegexPatternHelper.GenerateProjectRegexPattern("AnotherTestProject", TestingConstants.Passed, true, configuration), result.StdOut); result.StdOut .Should().Contain("Test run summary: Failed!") From ea016885d555119058cca543d6c958da59647a45 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 13 Jan 2026 02:02:16 +0000 Subject: [PATCH 372/392] Update dependencies from https://github.com/microsoft/testfx build 20260112.11 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.26059.2 -> To Version 2.1.0-preview.26062.11 MSTest From Version 4.1.0-preview.26059.2 -> To Version 4.1.0-preview.26062.11 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 7e6930bffc8c..16135675f53a 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.26059.2 - 4.1.0-preview.26059.2 + 2.1.0-preview.26062.11 + 4.1.0-preview.26062.11 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6c6d98a8b595..247ea4696636 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/microsoft/testfx - d61d2db2a58b6baea78f5cd2402335dfd311c7c7 + be14b733793921dce2c5e30fbd78bc4dc3baefc7 - + https://github.com/microsoft/testfx - d61d2db2a58b6baea78f5cd2402335dfd311c7c7 + be14b733793921dce2c5e30fbd78bc4dc3baefc7 https://github.com/dotnet/dotnet From d5f0e05e5e7208f564b6921ec316224f16d871cd Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 13 Jan 2026 02:02:39 +0000 Subject: [PATCH 373/392] Update dependencies from https://github.com/microsoft/testfx build 20260112.11 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.26062.11 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.26062.11 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 511da046f7ca..a9eca840abb6 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -150,8 +150,8 @@ This file should be imported by eng/Versions.props 10.0.0-beta.25605.3 10.0.0-beta.25605.3 - 2.1.0-preview.26059.2 - 4.1.0-preview.26059.2 + 2.1.0-preview.26062.11 + 4.1.0-preview.26062.11 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8f3fd9ac215c..93823e8d7eef 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -556,13 +556,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet fad253f51b461736dfd3cd9c15977bb7493becef - + https://github.com/microsoft/testfx - d61d2db2a58b6baea78f5cd2402335dfd311c7c7 + be14b733793921dce2c5e30fbd78bc4dc3baefc7 - + https://github.com/microsoft/testfx - d61d2db2a58b6baea78f5cd2402335dfd311c7c7 + be14b733793921dce2c5e30fbd78bc4dc3baefc7 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 44e12738fb1ef608f00a72d6ba0bd9b9383dae11 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 13 Jan 2026 05:46:55 +0000 Subject: [PATCH 374/392] Backflow from https://github.com/dotnet/dotnet / 976695d build 297004 [[ commit created by automation ]] --- eng/Versions.props | 6 ++++++ src/Layout/redist/targets/BundledManifests.targets | 12 ++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index c52afa672d4d..d144776c162c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -142,6 +142,12 @@ 10.0.100 + + 10.0.0 36.1.2 26.0.11017 diff --git a/src/Layout/redist/targets/BundledManifests.targets b/src/Layout/redist/targets/BundledManifests.targets index c945bc73b872..99fb9dddc898 100644 --- a/src/Layout/redist/targets/BundledManifests.targets +++ b/src/Layout/redist/targets/BundledManifests.targets @@ -1,12 +1,12 @@ - - - - - - + + + + + + From 62263a251369ed6799c79180bd47a6294f9abf6d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 13 Jan 2026 05:47:04 +0000 Subject: [PATCH 375/392] Update dependencies --- NuGet.config | 2 +- eng/Version.Details.props | 126 +++--- eng/Version.Details.xml | 392 +++++++++--------- .../job/publish-build-assets.yml | 2 +- .../core-templates/post-build/post-build.yml | 4 +- .../templates/variables/pool-providers.yml | 2 +- global.json | 4 +- 7 files changed, 266 insertions(+), 266 deletions(-) diff --git a/NuGet.config b/NuGet.config index dbbf4f6290b4..4c64c0e807f5 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 7e6930bffc8c..ff9114e292a7 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.3-servicing.26057.111 - 10.0.3-servicing.26057.111 - 10.0.3-servicing.26057.111 - 10.0.3-servicing.26057.111 + 10.0.3-servicing.26062.108 + 10.0.3-servicing.26062.108 + 10.0.3-servicing.26062.108 + 10.0.3-servicing.26062.108 10.0.3 - 10.0.3-servicing.26057.111 + 10.0.3-servicing.26062.108 10.0.3 10.0.3 10.0.3 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.26057.111 + 10.0.3-servicing.26062.108 10.0.3 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.26057.111 + 10.0.3-servicing.26062.108 10.0.3 - 10.0.3-servicing.26057.111 - 10.0.3-servicing.26057.111 - 10.0.0-preview.26057.111 + 10.0.3-servicing.26062.108 + 10.0.3-servicing.26062.108 + 10.0.0-preview.26062.108 10.0.3 10.0.3 18.0.10 - 18.0.10-servicing-26057-111 - 7.0.2-rc.5811 + 18.0.10-servicing-26062-108 + 7.0.2-rc.6308 10.0.103 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 10.0.0-preview.26057.111 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 2.0.0-preview.1.26057.111 + 5.0.0-2.26062.108 + 5.0.0-2.26062.108 + 5.0.0-2.26062.108 + 5.0.0-2.26062.108 + 5.0.0-2.26062.108 + 5.0.0-2.26062.108 + 5.0.0-2.26062.108 + 10.0.0-preview.26062.108 + 5.0.0-2.26062.108 + 5.0.0-2.26062.108 + 2.0.0-preview.1.26062.108 2.2.3 - 10.0.0-beta.26057.111 - 10.0.0-beta.26057.111 - 10.0.0-beta.26057.111 - 10.0.0-beta.26057.111 - 10.0.0-beta.26057.111 - 10.0.0-beta.26057.111 + 10.0.0-beta.26062.108 + 10.0.0-beta.26062.108 + 10.0.0-beta.26062.108 + 10.0.0-beta.26062.108 + 10.0.0-beta.26062.108 + 10.0.0-beta.26062.108 10.0.3 10.0.3 - 10.0.3-servicing.26057.111 - 10.0.3-servicing.26057.111 - 10.0.0-beta.26057.111 - 10.0.0-beta.26057.111 + 10.0.3-servicing.26062.108 + 10.0.3-servicing.26062.108 + 10.0.0-beta.26062.108 + 10.0.0-beta.26062.108 10.0.3 10.0.3 10.0.3 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 14.0.103-servicing.26057.111 + 14.0.103-servicing.26062.108 10.0.3 - 5.0.0-2.26057.111 - 5.0.0-2.26057.111 - 10.0.3-servicing.26057.111 + 5.0.0-2.26062.108 + 5.0.0-2.26062.108 + 10.0.3-servicing.26062.108 10.0.3 10.0.3 10.0.0-preview.7.25377.103 - 10.0.0-preview.26057.111 - 10.0.3-servicing.26057.111 - 18.0.1-release-26057-111 + 10.0.0-preview.26062.108 + 10.0.3-servicing.26062.108 + 18.0.1-release-26062-108 10.0.3 - 10.0.3-servicing.26057.111 + 10.0.3-servicing.26062.108 10.0.103 10.0.103 10.0.103 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.103 10.0.103 10.0.103 - 10.0.103-servicing.26057.111 + 10.0.103-servicing.26062.108 10.0.103 - 10.0.103-servicing.26057.111 + 10.0.103-servicing.26062.108 10.0.103 10.0.103 - 10.0.103-servicing.26057.111 - 18.0.1-release-26057-111 - 18.0.1-release-26057-111 + 10.0.103-servicing.26062.108 + 18.0.1-release-26062-108 + 18.0.1-release-26062-108 3.2.3 10.0.3 - 10.0.3-servicing.26057.111 + 10.0.3-servicing.26062.108 10.0.3 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 - 7.0.2-rc.5811 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 + 7.0.2-rc.6308 10.0.3 2.0.3 10.0.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6c6d98a8b595..c79826779bf4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 - + https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 4ef9fba1ed958b047163527960c27baf2883f835 + 976695d40cfde0801c78b8fed85ca80e997da085 diff --git a/eng/common/core-templates/job/publish-build-assets.yml b/eng/common/core-templates/job/publish-build-assets.yml index 3437087c80fc..b955fac6e13f 100644 --- a/eng/common/core-templates/job/publish-build-assets.yml +++ b/eng/common/core-templates/job/publish-build-assets.yml @@ -80,7 +80,7 @@ jobs: # If it's not devdiv, it's dnceng ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: name: NetCore1ESPool-Publishing-Internal - image: windows.vs2019.amd64 + image: windows.vs2022.amd64 os: windows steps: - ${{ if eq(parameters.is1ESPipeline, '') }}: diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index 9423d71ca3a2..b942a79ef02d 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -293,11 +293,11 @@ stages: ${{ else }}: ${{ if eq(parameters.is1ESPipeline, true) }}: name: NetCore1ESPool-Publishing-Internal - image: windows.vs2019.amd64 + image: windows.vs2022.amd64 os: windows ${{ else }}: name: NetCore1ESPool-Publishing-Internal - demands: ImageOverride -equals windows.vs2019.amd64 + demands: ImageOverride -equals windows.vs2022.amd64 steps: - template: /eng/common/core-templates/post-build/setup-maestro-vars.yml parameters: diff --git a/eng/common/templates/variables/pool-providers.yml b/eng/common/templates/variables/pool-providers.yml index e0b19c14a073..18693ea120d5 100644 --- a/eng/common/templates/variables/pool-providers.yml +++ b/eng/common/templates/variables/pool-providers.yml @@ -23,7 +23,7 @@ # # pool: # name: $(DncEngInternalBuildPool) -# demands: ImageOverride -equals windows.vs2019.amd64 +# demands: ImageOverride -equals windows.vs2022.amd64 variables: - ${{ if eq(variables['System.TeamProject'], 'internal') }}: - template: /eng/common/templates-official/variables/pool-providers.yml diff --git a/global.json b/global.json index b5fa2cead1a7..39a16d4e23e9 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26057.111", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26057.111", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26062.108", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26062.108", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 9f332f8b27e4fd178558b323a19c39c4485add13 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 14 Jan 2026 02:02:18 +0000 Subject: [PATCH 376/392] Update dependencies from https://github.com/microsoft/testfx build 20260113.3 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.26059.2 -> To Version 2.1.0-preview.26063.3 MSTest From Version 4.1.0-preview.26059.2 -> To Version 4.1.0-preview.26063.3 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 16135675f53a..5f426fc01412 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.26062.11 - 4.1.0-preview.26062.11 + 2.1.0-preview.26063.3 + 4.1.0-preview.26063.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 247ea4696636..3a843be7e65f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 4ef9fba1ed958b047163527960c27baf2883f835 - + https://github.com/microsoft/testfx - be14b733793921dce2c5e30fbd78bc4dc3baefc7 + a92cb454cfad608883388349624bd726a1796f5e - + https://github.com/microsoft/testfx - be14b733793921dce2c5e30fbd78bc4dc3baefc7 + a92cb454cfad608883388349624bd726a1796f5e https://github.com/dotnet/dotnet From df42cd5d53487646a058bb2eb9e2c130d21b82a2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 14 Jan 2026 02:02:37 +0000 Subject: [PATCH 377/392] Update dependencies from https://github.com/microsoft/testfx build 20260113.3 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.26063.3 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.26063.3 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index a9eca840abb6..392fd971ec05 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -150,8 +150,8 @@ This file should be imported by eng/Versions.props 10.0.0-beta.25605.3 10.0.0-beta.25605.3 - 2.1.0-preview.26062.11 - 4.1.0-preview.26062.11 + 2.1.0-preview.26063.3 + 4.1.0-preview.26063.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 93823e8d7eef..2603cb7d6ee0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -556,13 +556,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet fad253f51b461736dfd3cd9c15977bb7493becef - + https://github.com/microsoft/testfx - be14b733793921dce2c5e30fbd78bc4dc3baefc7 + a92cb454cfad608883388349624bd726a1796f5e - + https://github.com/microsoft/testfx - be14b733793921dce2c5e30fbd78bc4dc3baefc7 + a92cb454cfad608883388349624bd726a1796f5e https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From fe4a34546085e0716219091c80e724925eba7c8a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 14 Jan 2026 16:15:35 +0000 Subject: [PATCH 378/392] Update dependencies --- NuGet.config | 2 +- eng/Version.Details.props | 126 ++++++------ eng/Version.Details.xml | 392 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 262 insertions(+), 262 deletions(-) diff --git a/NuGet.config b/NuGet.config index 4c64c0e807f5..ed56b0a8e22b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index ff9114e292a7..68b7fef29a79 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.3-servicing.26062.108 - 10.0.3-servicing.26062.108 - 10.0.3-servicing.26062.108 - 10.0.3-servicing.26062.108 + 10.0.3-servicing.26064.103 + 10.0.3-servicing.26064.103 + 10.0.3-servicing.26064.103 + 10.0.3-servicing.26064.103 10.0.3 - 10.0.3-servicing.26062.108 + 10.0.3-servicing.26064.103 10.0.3 10.0.3 10.0.3 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.26062.108 + 10.0.3-servicing.26064.103 10.0.3 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.26062.108 + 10.0.3-servicing.26064.103 10.0.3 - 10.0.3-servicing.26062.108 - 10.0.3-servicing.26062.108 - 10.0.0-preview.26062.108 + 10.0.3-servicing.26064.103 + 10.0.3-servicing.26064.103 + 10.0.0-preview.26064.103 10.0.3 10.0.3 18.0.10 - 18.0.10-servicing-26062-108 - 7.0.2-rc.6308 + 18.0.10-servicing-26064-103 + 7.0.2-rc.6503 10.0.103 - 5.0.0-2.26062.108 - 5.0.0-2.26062.108 - 5.0.0-2.26062.108 - 5.0.0-2.26062.108 - 5.0.0-2.26062.108 - 5.0.0-2.26062.108 - 5.0.0-2.26062.108 - 10.0.0-preview.26062.108 - 5.0.0-2.26062.108 - 5.0.0-2.26062.108 - 2.0.0-preview.1.26062.108 + 5.0.0-2.26064.103 + 5.0.0-2.26064.103 + 5.0.0-2.26064.103 + 5.0.0-2.26064.103 + 5.0.0-2.26064.103 + 5.0.0-2.26064.103 + 5.0.0-2.26064.103 + 10.0.0-preview.26064.103 + 5.0.0-2.26064.103 + 5.0.0-2.26064.103 + 2.0.0-preview.1.26064.103 2.2.3 - 10.0.0-beta.26062.108 - 10.0.0-beta.26062.108 - 10.0.0-beta.26062.108 - 10.0.0-beta.26062.108 - 10.0.0-beta.26062.108 - 10.0.0-beta.26062.108 + 10.0.0-beta.26064.103 + 10.0.0-beta.26064.103 + 10.0.0-beta.26064.103 + 10.0.0-beta.26064.103 + 10.0.0-beta.26064.103 + 10.0.0-beta.26064.103 10.0.3 10.0.3 - 10.0.3-servicing.26062.108 - 10.0.3-servicing.26062.108 - 10.0.0-beta.26062.108 - 10.0.0-beta.26062.108 + 10.0.3-servicing.26064.103 + 10.0.3-servicing.26064.103 + 10.0.0-beta.26064.103 + 10.0.0-beta.26064.103 10.0.3 10.0.3 10.0.3 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 14.0.103-servicing.26062.108 + 14.0.103-servicing.26064.103 10.0.3 - 5.0.0-2.26062.108 - 5.0.0-2.26062.108 - 10.0.3-servicing.26062.108 + 5.0.0-2.26064.103 + 5.0.0-2.26064.103 + 10.0.3-servicing.26064.103 10.0.3 10.0.3 10.0.0-preview.7.25377.103 - 10.0.0-preview.26062.108 - 10.0.3-servicing.26062.108 - 18.0.1-release-26062-108 + 10.0.0-preview.26064.103 + 10.0.3-servicing.26064.103 + 18.0.1-release-26064-103 10.0.3 - 10.0.3-servicing.26062.108 + 10.0.3-servicing.26064.103 10.0.103 10.0.103 10.0.103 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.103 10.0.103 10.0.103 - 10.0.103-servicing.26062.108 + 10.0.103-servicing.26064.103 10.0.103 - 10.0.103-servicing.26062.108 + 10.0.103-servicing.26064.103 10.0.103 10.0.103 - 10.0.103-servicing.26062.108 - 18.0.1-release-26062-108 - 18.0.1-release-26062-108 + 10.0.103-servicing.26064.103 + 18.0.1-release-26064-103 + 18.0.1-release-26064-103 3.2.3 10.0.3 - 10.0.3-servicing.26062.108 + 10.0.3-servicing.26064.103 10.0.3 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 - 7.0.2-rc.6308 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 + 7.0.2-rc.6503 10.0.3 2.0.3 10.0.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c79826779bf4..c03d1cb819f9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf - + https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 976695d40cfde0801c78b8fed85ca80e997da085 + 53f8a17e66f76a8cc253524f94591aa7ec23fadf diff --git a/global.json b/global.json index 39a16d4e23e9..93b625089f09 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26062.108", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26062.108", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26064.103", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26064.103", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From dcf79036723532dc4b1ce0e4cea4b964fb509616 Mon Sep 17 00:00:00 2001 From: Jan Jones Date: Wed, 14 Jan 2026 19:34:23 +0100 Subject: [PATCH 379/392] [release/10.0.1xx] Fix a file-based app package test (#52450) --- .../Package/Add/GivenDotnetPackageAdd.cs | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/test/dotnet.Tests/CommandTests/Package/Add/GivenDotnetPackageAdd.cs b/test/dotnet.Tests/CommandTests/Package/Add/GivenDotnetPackageAdd.cs index 4bfa88903553..da3ad70c9893 100644 --- a/test/dotnet.Tests/CommandTests/Package/Add/GivenDotnetPackageAdd.cs +++ b/test/dotnet.Tests/CommandTests/Package/Add/GivenDotnetPackageAdd.cs @@ -671,12 +671,19 @@ public void FileBasedApp_CentralPackageManagement_NoVersionSpecified(bool legacy [Theory, CombinatorialData] public void FileBasedApp_CentralPackageManagement_NoVersionSpecified_KeepExisting(bool legacyForm, bool fileOption, bool noRestore) { - if (GetFileBasedAppArgs(legacyForm, versionOption: null, fileOption, noRestore) is not { } args) return; + if (GetFileBasedAppArgs(legacyForm, versionOption: null, fileOption, noRestore, packageName: "A") is not { } args) return; var testInstance = _testAssetsManager.CreateTestDirectory(); + + string[] versions = ["0.0.5", "0.9.0", "1.0.0-preview.3"]; + var packages = versions.Select(e => GetPackagePath(ToolsetInfo.CurrentTargetFramework, "A", e, identifier: e + versions.GetHashCode().ToString())).ToArray(); + + var restoreSources = string.Join(";", packages.Select(package => Path.GetDirectoryName(package))); + var file = Path.Join(testInstance.Path, "Program.cs"); - var source = """ - #:package Humanizer + var source = $""" + #:property RestoreSources=$(RestoreSources);{restoreSources} + #:package A Console.WriteLine(); """; File.WriteAllText(file, source); @@ -688,7 +695,7 @@ public void FileBasedApp_CentralPackageManagement_NoVersionSpecified_KeepExistin true - + """; From d0fd3292d123ee6d20caa76607e0c5f106fea7aa Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 14 Jan 2026 23:34:37 +0000 Subject: [PATCH 380/392] Update dependencies --- NuGet.config | 2 +- eng/Version.Details.props | 126 ++++++------ eng/Version.Details.xml | 392 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 262 insertions(+), 262 deletions(-) diff --git a/NuGet.config b/NuGet.config index ed56b0a8e22b..0b381f070676 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 68b7fef29a79..f90f557d353f 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.3-servicing.26064.103 - 10.0.3-servicing.26064.103 - 10.0.3-servicing.26064.103 - 10.0.3-servicing.26064.103 + 10.0.3-servicing.26064.114 + 10.0.3-servicing.26064.114 + 10.0.3-servicing.26064.114 + 10.0.3-servicing.26064.114 10.0.3 - 10.0.3-servicing.26064.103 + 10.0.3-servicing.26064.114 10.0.3 10.0.3 10.0.3 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.26064.103 + 10.0.3-servicing.26064.114 10.0.3 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.26064.103 + 10.0.3-servicing.26064.114 10.0.3 - 10.0.3-servicing.26064.103 - 10.0.3-servicing.26064.103 - 10.0.0-preview.26064.103 + 10.0.3-servicing.26064.114 + 10.0.3-servicing.26064.114 + 10.0.0-preview.26064.114 10.0.3 10.0.3 18.0.10 - 18.0.10-servicing-26064-103 - 7.0.2-rc.6503 + 18.0.10-servicing-26064-114 + 7.0.2-rc.6514 10.0.103 - 5.0.0-2.26064.103 - 5.0.0-2.26064.103 - 5.0.0-2.26064.103 - 5.0.0-2.26064.103 - 5.0.0-2.26064.103 - 5.0.0-2.26064.103 - 5.0.0-2.26064.103 - 10.0.0-preview.26064.103 - 5.0.0-2.26064.103 - 5.0.0-2.26064.103 - 2.0.0-preview.1.26064.103 + 5.0.0-2.26064.114 + 5.0.0-2.26064.114 + 5.0.0-2.26064.114 + 5.0.0-2.26064.114 + 5.0.0-2.26064.114 + 5.0.0-2.26064.114 + 5.0.0-2.26064.114 + 10.0.0-preview.26064.114 + 5.0.0-2.26064.114 + 5.0.0-2.26064.114 + 2.0.0-preview.1.26064.114 2.2.3 - 10.0.0-beta.26064.103 - 10.0.0-beta.26064.103 - 10.0.0-beta.26064.103 - 10.0.0-beta.26064.103 - 10.0.0-beta.26064.103 - 10.0.0-beta.26064.103 + 10.0.0-beta.26064.114 + 10.0.0-beta.26064.114 + 10.0.0-beta.26064.114 + 10.0.0-beta.26064.114 + 10.0.0-beta.26064.114 + 10.0.0-beta.26064.114 10.0.3 10.0.3 - 10.0.3-servicing.26064.103 - 10.0.3-servicing.26064.103 - 10.0.0-beta.26064.103 - 10.0.0-beta.26064.103 + 10.0.3-servicing.26064.114 + 10.0.3-servicing.26064.114 + 10.0.0-beta.26064.114 + 10.0.0-beta.26064.114 10.0.3 10.0.3 10.0.3 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 14.0.103-servicing.26064.103 + 14.0.103-servicing.26064.114 10.0.3 - 5.0.0-2.26064.103 - 5.0.0-2.26064.103 - 10.0.3-servicing.26064.103 + 5.0.0-2.26064.114 + 5.0.0-2.26064.114 + 10.0.3-servicing.26064.114 10.0.3 10.0.3 10.0.0-preview.7.25377.103 - 10.0.0-preview.26064.103 - 10.0.3-servicing.26064.103 - 18.0.1-release-26064-103 + 10.0.0-preview.26064.114 + 10.0.3-servicing.26064.114 + 18.0.1-release-26064-114 10.0.3 - 10.0.3-servicing.26064.103 + 10.0.3-servicing.26064.114 10.0.103 10.0.103 10.0.103 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.103 10.0.103 10.0.103 - 10.0.103-servicing.26064.103 + 10.0.103-servicing.26064.114 10.0.103 - 10.0.103-servicing.26064.103 + 10.0.103-servicing.26064.114 10.0.103 10.0.103 - 10.0.103-servicing.26064.103 - 18.0.1-release-26064-103 - 18.0.1-release-26064-103 + 10.0.103-servicing.26064.114 + 18.0.1-release-26064-114 + 18.0.1-release-26064-114 3.2.3 10.0.3 - 10.0.3-servicing.26064.103 + 10.0.3-servicing.26064.114 10.0.3 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 - 7.0.2-rc.6503 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 + 7.0.2-rc.6514 10.0.3 2.0.3 10.0.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c03d1cb819f9..4c50df10238c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 53f8a17e66f76a8cc253524f94591aa7ec23fadf + fe158d9692179d1316d11bf67b264c4509176f7e diff --git a/global.json b/global.json index 93b625089f09..cb9af9cf5b21 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26064.103", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26064.103", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26064.114", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26064.114", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 7fa6e046ca82d893e06d36c68a3f8642fa17b972 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 15 Jan 2026 02:02:30 +0000 Subject: [PATCH 381/392] Update dependencies from https://github.com/microsoft/testfx build 20260114.3 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.26059.2 -> To Version 2.1.0-preview.26064.3 MSTest From Version 4.1.0-preview.26059.2 -> To Version 4.1.0-preview.26064.3 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 4fcebf11c87c..273dece1382c 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.26063.3 - 4.1.0-preview.26063.3 + 2.1.0-preview.26064.3 + 4.1.0-preview.26064.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 328c6d5b95e9..58f4c7a87b7d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet fe158d9692179d1316d11bf67b264c4509176f7e - + https://github.com/microsoft/testfx - a92cb454cfad608883388349624bd726a1796f5e + 2462bf58f6bf1460d767166d8f15390a9c6c7920 - + https://github.com/microsoft/testfx - a92cb454cfad608883388349624bd726a1796f5e + 2462bf58f6bf1460d767166d8f15390a9c6c7920 https://github.com/dotnet/dotnet From 2bce72e7fee1a1265915647eb1a4fcb488c8f78d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 15 Jan 2026 02:02:54 +0000 Subject: [PATCH 382/392] Update dependencies from https://github.com/microsoft/testfx build 20260114.3 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.25571.1 -> To Version 2.1.0-preview.26064.3 MSTest From Version 4.1.0-preview.25571.1 -> To Version 4.1.0-preview.26064.3 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 392fd971ec05..aa57598ece77 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -150,8 +150,8 @@ This file should be imported by eng/Versions.props 10.0.0-beta.25605.3 10.0.0-beta.25605.3 - 2.1.0-preview.26063.3 - 4.1.0-preview.26063.3 + 2.1.0-preview.26064.3 + 4.1.0-preview.26064.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2603cb7d6ee0..7fdb955edb3c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -556,13 +556,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet fad253f51b461736dfd3cd9c15977bb7493becef - + https://github.com/microsoft/testfx - a92cb454cfad608883388349624bd726a1796f5e + 2462bf58f6bf1460d767166d8f15390a9c6c7920 - + https://github.com/microsoft/testfx - a92cb454cfad608883388349624bd726a1796f5e + 2462bf58f6bf1460d767166d8f15390a9c6c7920 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 6fecb9f5812fddd3074a0493410a8cbc8f02ad0b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 15 Jan 2026 07:06:28 +0000 Subject: [PATCH 383/392] Update dependencies --- NuGet.config | 2 +- eng/Version.Details.props | 126 ++++++------ eng/Version.Details.xml | 392 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 262 insertions(+), 262 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0b381f070676..14fcbdf49d25 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 273dece1382c..7199bccd54bb 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.3-servicing.26064.114 - 10.0.3-servicing.26064.114 - 10.0.3-servicing.26064.114 - 10.0.3-servicing.26064.114 + 10.0.3-servicing.26064.122 + 10.0.3-servicing.26064.122 + 10.0.3-servicing.26064.122 + 10.0.3-servicing.26064.122 10.0.3 - 10.0.3-servicing.26064.114 + 10.0.3-servicing.26064.122 10.0.3 10.0.3 10.0.3 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.26064.114 + 10.0.3-servicing.26064.122 10.0.3 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.26064.114 + 10.0.3-servicing.26064.122 10.0.3 - 10.0.3-servicing.26064.114 - 10.0.3-servicing.26064.114 - 10.0.0-preview.26064.114 + 10.0.3-servicing.26064.122 + 10.0.3-servicing.26064.122 + 10.0.0-preview.26064.122 10.0.3 10.0.3 18.0.10 - 18.0.10-servicing-26064-114 - 7.0.2-rc.6514 + 18.0.10-servicing-26064-122 + 7.0.2-rc.6522 10.0.103 - 5.0.0-2.26064.114 - 5.0.0-2.26064.114 - 5.0.0-2.26064.114 - 5.0.0-2.26064.114 - 5.0.0-2.26064.114 - 5.0.0-2.26064.114 - 5.0.0-2.26064.114 - 10.0.0-preview.26064.114 - 5.0.0-2.26064.114 - 5.0.0-2.26064.114 - 2.0.0-preview.1.26064.114 + 5.0.0-2.26064.122 + 5.0.0-2.26064.122 + 5.0.0-2.26064.122 + 5.0.0-2.26064.122 + 5.0.0-2.26064.122 + 5.0.0-2.26064.122 + 5.0.0-2.26064.122 + 10.0.0-preview.26064.122 + 5.0.0-2.26064.122 + 5.0.0-2.26064.122 + 2.0.0-preview.1.26064.122 2.2.3 - 10.0.0-beta.26064.114 - 10.0.0-beta.26064.114 - 10.0.0-beta.26064.114 - 10.0.0-beta.26064.114 - 10.0.0-beta.26064.114 - 10.0.0-beta.26064.114 + 10.0.0-beta.26064.122 + 10.0.0-beta.26064.122 + 10.0.0-beta.26064.122 + 10.0.0-beta.26064.122 + 10.0.0-beta.26064.122 + 10.0.0-beta.26064.122 10.0.3 10.0.3 - 10.0.3-servicing.26064.114 - 10.0.3-servicing.26064.114 - 10.0.0-beta.26064.114 - 10.0.0-beta.26064.114 + 10.0.3-servicing.26064.122 + 10.0.3-servicing.26064.122 + 10.0.0-beta.26064.122 + 10.0.0-beta.26064.122 10.0.3 10.0.3 10.0.3 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 14.0.103-servicing.26064.114 + 14.0.103-servicing.26064.122 10.0.3 - 5.0.0-2.26064.114 - 5.0.0-2.26064.114 - 10.0.3-servicing.26064.114 + 5.0.0-2.26064.122 + 5.0.0-2.26064.122 + 10.0.3-servicing.26064.122 10.0.3 10.0.3 10.0.0-preview.7.25377.103 - 10.0.0-preview.26064.114 - 10.0.3-servicing.26064.114 - 18.0.1-release-26064-114 + 10.0.0-preview.26064.122 + 10.0.3-servicing.26064.122 + 18.0.1-release-26064-122 10.0.3 - 10.0.3-servicing.26064.114 + 10.0.3-servicing.26064.122 10.0.103 10.0.103 10.0.103 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.103 10.0.103 10.0.103 - 10.0.103-servicing.26064.114 + 10.0.103-servicing.26064.122 10.0.103 - 10.0.103-servicing.26064.114 + 10.0.103-servicing.26064.122 10.0.103 10.0.103 - 10.0.103-servicing.26064.114 - 18.0.1-release-26064-114 - 18.0.1-release-26064-114 + 10.0.103-servicing.26064.122 + 18.0.1-release-26064-122 + 18.0.1-release-26064-122 3.2.3 10.0.3 - 10.0.3-servicing.26064.114 + 10.0.3-servicing.26064.122 10.0.3 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 - 7.0.2-rc.6514 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 + 7.0.2-rc.6522 10.0.3 2.0.3 10.0.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 58f4c7a87b7d..6be7b6571eb3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 - + https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - fe158d9692179d1316d11bf67b264c4509176f7e + 4043b2527f841bed0fc4c9d0acc6e122da481553 diff --git a/global.json b/global.json index cb9af9cf5b21..97f0aecef3da 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26064.114", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26064.114", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26064.122", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26064.122", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 371e906c24c0550aefdc01593d47bc231c72c9bf Mon Sep 17 00:00:00 2001 From: dotnet bot Date: Thu, 15 Jan 2026 09:51:59 +0100 Subject: [PATCH 384/392] Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2879817 --- src/Cli/dotnet/Commands/xlf/CliCommandStrings.cs.xlf | 2 +- src/Cli/dotnet/Commands/xlf/CliCommandStrings.de.xlf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.cs.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.cs.xlf index 31d45b55f8b0..503732e378bc 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.cs.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.cs.xlf @@ -94,7 +94,7 @@ Do not display the startup banner or the copyright message. - Do not display the startup banner or the copyright message. + Nezobrazovat úvodní nápis ani zprávu o autorských právech diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.de.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.de.xlf index 85e16cbf30d0..af62e25ca722 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.de.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.de.xlf @@ -94,7 +94,7 @@ Do not display the startup banner or the copyright message. - Do not display the startup banner or the copyright message. + Zeigt kein Startbanner und keine Copyrightmeldung an. From d58f3b309e56e2a123d6a76034ea3ee3ce29badf Mon Sep 17 00:00:00 2001 From: dotnet bot Date: Thu, 15 Jan 2026 09:53:20 +0100 Subject: [PATCH 385/392] Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2879817 --- src/Cli/dotnet/Commands/xlf/CliCommandStrings.es.xlf | 2 +- src/Cli/dotnet/Commands/xlf/CliCommandStrings.fr.xlf | 2 +- src/Cli/dotnet/Commands/xlf/CliCommandStrings.it.xlf | 2 +- src/Cli/dotnet/Commands/xlf/CliCommandStrings.ja.xlf | 2 +- src/Cli/dotnet/Commands/xlf/CliCommandStrings.ko.xlf | 2 +- src/Cli/dotnet/Commands/xlf/CliCommandStrings.pl.xlf | 2 +- src/Cli/dotnet/Commands/xlf/CliCommandStrings.pt-BR.xlf | 2 +- src/Cli/dotnet/Commands/xlf/CliCommandStrings.ru.xlf | 2 +- src/Cli/dotnet/Commands/xlf/CliCommandStrings.tr.xlf | 2 +- src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hans.xlf | 2 +- src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hant.xlf | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.es.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.es.xlf index c1eea4ed87f3..9573e17cf5e3 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.es.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.es.xlf @@ -94,7 +94,7 @@ Do not display the startup banner or the copyright message. - Do not display the startup banner or the copyright message. + No mostrar la pancarta de inicio ni el mensaje de copyright. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.fr.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.fr.xlf index 979e0ec808df..6d24f499f375 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.fr.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.fr.xlf @@ -94,7 +94,7 @@ Do not display the startup banner or the copyright message. - Do not display the startup banner or the copyright message. + N'affiche pas la bannière de démarrage ni le message de copyright. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.it.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.it.xlf index 7dc05315eab5..b987f98f8c6e 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.it.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.it.xlf @@ -94,7 +94,7 @@ Do not display the startup banner or the copyright message. - Do not display the startup banner or the copyright message. + Evita la visualizzazione del messaggio di avvio o di copyright. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ja.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ja.xlf index 70da7fb70045..3ef1341b3379 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ja.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ja.xlf @@ -94,7 +94,7 @@ Do not display the startup banner or the copyright message. - Do not display the startup banner or the copyright message. + 著作権情報を表示しません。 diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ko.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ko.xlf index b2803aed4e9e..2bab7de74eb5 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ko.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ko.xlf @@ -94,7 +94,7 @@ Do not display the startup banner or the copyright message. - Do not display the startup banner or the copyright message. + 시작 배너 또는 저작권 메시지를 표시하지 않습니다. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pl.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pl.xlf index 7fc4f3590007..7b6cecaeb80b 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pl.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pl.xlf @@ -94,7 +94,7 @@ Do not display the startup banner or the copyright message. - Do not display the startup banner or the copyright message. + Nie wyświetlaj baneru początkowego ani komunikatu o prawach autorskich. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pt-BR.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pt-BR.xlf index d6d9745e402b..a626a828598e 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pt-BR.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.pt-BR.xlf @@ -94,7 +94,7 @@ Do not display the startup banner or the copyright message. - Do not display the startup banner or the copyright message. + Não exibe a faixa de inicialização ou a mensagem de direitos autorais. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ru.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ru.xlf index d70371506f99..85273bc1b688 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ru.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.ru.xlf @@ -94,7 +94,7 @@ Do not display the startup banner or the copyright message. - Do not display the startup banner or the copyright message. + Не отображать начальный баннер или сообщение об авторских правах. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.tr.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.tr.xlf index 0fffd9d3c3f9..aaafe7633293 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.tr.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.tr.xlf @@ -94,7 +94,7 @@ Do not display the startup banner or the copyright message. - Do not display the startup banner or the copyright message. + Başlangıç bandını veya telif hakkı iletisini görüntüleme. diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hans.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hans.xlf index ea90b6780bdc..0df738f393bf 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hans.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hans.xlf @@ -94,7 +94,7 @@ Do not display the startup banner or the copyright message. - Do not display the startup banner or the copyright message. + 不显示启动版权标志或版权消息。 diff --git a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hant.xlf b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hant.xlf index baf16b00cc37..cb7f4356e0de 100644 --- a/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hant.xlf +++ b/src/Cli/dotnet/Commands/xlf/CliCommandStrings.zh-Hant.xlf @@ -94,7 +94,7 @@ Do not display the startup banner or the copyright message. - Do not display the startup banner or the copyright message. + 不顯示啟始資訊或著作權訊息。 From 180ea1d83d15139ab90fbf2770ca10f8ae1f1b10 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 15 Jan 2026 16:13:17 +0000 Subject: [PATCH 386/392] Update dependencies --- NuGet.config | 2 +- eng/Version.Details.props | 126 ++++++------ eng/Version.Details.xml | 392 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 262 insertions(+), 262 deletions(-) diff --git a/NuGet.config b/NuGet.config index 14fcbdf49d25..47d1214ee661 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 7199bccd54bb..a41041539a55 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,12 @@ This file should be imported by eng/Versions.props - 10.0.3-servicing.26064.122 - 10.0.3-servicing.26064.122 - 10.0.3-servicing.26064.122 - 10.0.3-servicing.26064.122 + 10.0.3-servicing.26065.102 + 10.0.3-servicing.26065.102 + 10.0.3-servicing.26065.102 + 10.0.3-servicing.26065.102 10.0.3 - 10.0.3-servicing.26064.122 + 10.0.3-servicing.26065.102 10.0.3 10.0.3 10.0.3 @@ -19,46 +19,46 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.26064.122 + 10.0.3-servicing.26065.102 10.0.3 10.0.3 10.0.3 10.0.3 - 10.0.3-servicing.26064.122 + 10.0.3-servicing.26065.102 10.0.3 - 10.0.3-servicing.26064.122 - 10.0.3-servicing.26064.122 - 10.0.0-preview.26064.122 + 10.0.3-servicing.26065.102 + 10.0.3-servicing.26065.102 + 10.0.0-preview.26065.102 10.0.3 10.0.3 18.0.10 - 18.0.10-servicing-26064-122 - 7.0.2-rc.6522 + 18.0.10-servicing-26065-102 + 7.0.2-rc.6602 10.0.103 - 5.0.0-2.26064.122 - 5.0.0-2.26064.122 - 5.0.0-2.26064.122 - 5.0.0-2.26064.122 - 5.0.0-2.26064.122 - 5.0.0-2.26064.122 - 5.0.0-2.26064.122 - 10.0.0-preview.26064.122 - 5.0.0-2.26064.122 - 5.0.0-2.26064.122 - 2.0.0-preview.1.26064.122 + 5.0.0-2.26065.102 + 5.0.0-2.26065.102 + 5.0.0-2.26065.102 + 5.0.0-2.26065.102 + 5.0.0-2.26065.102 + 5.0.0-2.26065.102 + 5.0.0-2.26065.102 + 10.0.0-preview.26065.102 + 5.0.0-2.26065.102 + 5.0.0-2.26065.102 + 2.0.0-preview.1.26065.102 2.2.3 - 10.0.0-beta.26064.122 - 10.0.0-beta.26064.122 - 10.0.0-beta.26064.122 - 10.0.0-beta.26064.122 - 10.0.0-beta.26064.122 - 10.0.0-beta.26064.122 + 10.0.0-beta.26065.102 + 10.0.0-beta.26065.102 + 10.0.0-beta.26065.102 + 10.0.0-beta.26065.102 + 10.0.0-beta.26065.102 + 10.0.0-beta.26065.102 10.0.3 10.0.3 - 10.0.3-servicing.26064.122 - 10.0.3-servicing.26064.122 - 10.0.0-beta.26064.122 - 10.0.0-beta.26064.122 + 10.0.3-servicing.26065.102 + 10.0.3-servicing.26065.102 + 10.0.0-beta.26065.102 + 10.0.0-beta.26065.102 10.0.3 10.0.3 10.0.3 @@ -68,19 +68,19 @@ This file should be imported by eng/Versions.props 10.0.3 10.0.3 10.0.3 - 14.0.103-servicing.26064.122 + 14.0.103-servicing.26065.102 10.0.3 - 5.0.0-2.26064.122 - 5.0.0-2.26064.122 - 10.0.3-servicing.26064.122 + 5.0.0-2.26065.102 + 5.0.0-2.26065.102 + 10.0.3-servicing.26065.102 10.0.3 10.0.3 10.0.0-preview.7.25377.103 - 10.0.0-preview.26064.122 - 10.0.3-servicing.26064.122 - 18.0.1-release-26064-122 + 10.0.0-preview.26065.102 + 10.0.3-servicing.26065.102 + 18.0.1-release-26065-102 10.0.3 - 10.0.3-servicing.26064.122 + 10.0.3-servicing.26065.102 10.0.103 10.0.103 10.0.103 @@ -89,34 +89,34 @@ This file should be imported by eng/Versions.props 10.0.103 10.0.103 10.0.103 - 10.0.103-servicing.26064.122 + 10.0.103-servicing.26065.102 10.0.103 - 10.0.103-servicing.26064.122 + 10.0.103-servicing.26065.102 10.0.103 10.0.103 - 10.0.103-servicing.26064.122 - 18.0.1-release-26064-122 - 18.0.1-release-26064-122 + 10.0.103-servicing.26065.102 + 18.0.1-release-26065-102 + 18.0.1-release-26065-102 3.2.3 10.0.3 - 10.0.3-servicing.26064.122 + 10.0.3-servicing.26065.102 10.0.3 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 - 7.0.2-rc.6522 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 + 7.0.2-rc.6602 10.0.3 2.0.3 10.0.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6be7b6571eb3..8fc58ea7af0a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 4043b2527f841bed0fc4c9d0acc6e122da481553 + 99f9e99f92d73ade5453ba8edba5d72247f3cd11 diff --git a/global.json b/global.json index 97f0aecef3da..87ba29457b35 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26064.122", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26064.122", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26065.102", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26065.102", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 8179f80cabe791dc8fee4a7523d389c007a81a37 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Jan 2026 19:40:28 +0000 Subject: [PATCH 387/392] Reset files to release/10.0.2xx Reset patterns: - global.json - NuGet.config - eng/Version.Details.xml - eng/Version.Details.props - eng/common/* --- NuGet.config | 6 +- eng/Version.Details.props | 400 ++++----- eng/Version.Details.xml | 793 +++++++++--------- .../job/publish-build-assets.yml | 2 +- .../core-templates/post-build/post-build.yml | 4 +- eng/common/internal-feed-operations.ps1 | 2 +- eng/common/post-build/nuget-verification.ps1 | 2 +- .../templates/variables/pool-providers.yml | 2 +- eng/common/tools.ps1 | 19 +- global.json | 6 +- 10 files changed, 622 insertions(+), 614 deletions(-) diff --git a/NuGet.config b/NuGet.config index 47d1214ee661..7e04985571cd 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,8 @@ - + + @@ -39,6 +40,9 @@ + + + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index a41041539a55..aa57598ece77 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -5,149 +5,167 @@ This file should be imported by eng/Versions.props --> - - 10.0.3-servicing.26065.102 - 10.0.3-servicing.26065.102 - 10.0.3-servicing.26065.102 - 10.0.3-servicing.26065.102 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.3-servicing.26065.102 - 10.0.0-preview.26065.102 - 10.0.3 - 10.0.3 - 18.0.10 - 18.0.10-servicing-26065-102 - 7.0.2-rc.6602 - 10.0.103 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 10.0.0-preview.26065.102 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 2.0.0-preview.1.26065.102 - 2.2.3 - 10.0.0-beta.26065.102 - 10.0.0-beta.26065.102 - 10.0.0-beta.26065.102 - 10.0.0-beta.26065.102 - 10.0.0-beta.26065.102 - 10.0.0-beta.26065.102 - 10.0.3 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.3-servicing.26065.102 - 10.0.0-beta.26065.102 - 10.0.0-beta.26065.102 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 14.0.103-servicing.26065.102 - 10.0.3 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 10.0.3-servicing.26065.102 - 10.0.3 - 10.0.3 - 10.0.0-preview.7.25377.103 - 10.0.0-preview.26065.102 - 10.0.3-servicing.26065.102 - 18.0.1-release-26065-102 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103-servicing.26065.102 - 10.0.103 - 10.0.103-servicing.26065.102 - 10.0.103 - 10.0.103 - 10.0.103-servicing.26065.102 - 18.0.1-release-26065-102 - 18.0.1-release-26065-102 - 3.2.3 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.3 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 10.0.3 - 2.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 + + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + + 10.0.1-servicing.25569.105 + 10.0.1-servicing.25569.105 + 10.0.1-servicing.25569.105 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 10.0.0-beta.25569.105 + 2.0.0-preview.1.25569.105 + 2.2.1-beta.25569.105 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.0-beta.25569.105 + 10.0.0-beta.25569.105 + 10.0.0-beta.25569.105 + 10.0.0-beta.25569.105 + 10.0.0-beta.25569.105 + 3.2.1-servicing.25569.105 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 2.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 2.1.0 + + 10.0.0-preview.7.25377.103 + + 18.3.0-preview-25610-02 + 18.3.0-preview-25610-02 + + 15.1.200-servicing.25605.1 + + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + + 18.3.0-preview-25609-01 + 18.3.0-preview-25609-01 + 18.3.0-preview-25609-01 + + 10.0.0-preview.25552.2 + 10.0.0-preview.25552.2 + 10.0.0-preview.25552.2 + + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 2.1.0-preview.26064.3 4.1.0-preview.26064.3 - + + $(MicrosoftTemplateEngineAbstractionsPackageVersion) + $(MicrosoftTemplateEngineAuthoringTemplateVerifierPackageVersion) + $(MicrosoftTemplateEngineEdgePackageVersion) + $(MicrosoftTemplateEngineMocksPackageVersion) + $(MicrosoftTemplateEngineOrchestratorRunnableProjectsPackageVersion) + $(MicrosoftTemplateEngineTestHelperPackageVersion) + $(MicrosoftTemplateEngineUtilsPackageVersion) + $(MicrosoftTemplateSearchCommonPackageVersion) + $(MicrosoftTemplateSearchTemplateDiscoveryPackageVersion) + $(dotnetdevcertsPackageVersion) $(dotnetuserjwtsPackageVersion) $(dotnetusersecretsPackageVersion) @@ -170,37 +188,13 @@ This file should be imported by eng/Versions.props $(MicrosoftAspNetCoreMetadataPackageVersion) $(MicrosoftAspNetCoreMvcAnalyzersPackageVersion) $(MicrosoftAspNetCoreMvcApiAnalyzersPackageVersion) - $(MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion) $(MicrosoftAspNetCoreTestHostPackageVersion) $(MicrosoftBclAsyncInterfacesPackageVersion) - $(MicrosoftBuildPackageVersion) - $(MicrosoftBuildLocalizationPackageVersion) - $(MicrosoftBuildNuGetSdkResolverPackageVersion) $(MicrosoftBuildTasksGitPackageVersion) - $(MicrosoftCodeAnalysisPackageVersion) - $(MicrosoftCodeAnalysisBuildClientPackageVersion) - $(MicrosoftCodeAnalysisCSharpPackageVersion) - $(MicrosoftCodeAnalysisCSharpCodeStylePackageVersion) - $(MicrosoftCodeAnalysisCSharpFeaturesPackageVersion) - $(MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion) - $(MicrosoftCodeAnalysisPublicApiAnalyzersPackageVersion) - $(MicrosoftCodeAnalysisRazorToolingInternalPackageVersion) - $(MicrosoftCodeAnalysisWorkspacesCommonPackageVersion) - $(MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion) $(MicrosoftDeploymentDotNetReleasesPackageVersion) $(MicrosoftDiaSymReaderPackageVersion) - $(MicrosoftDotNetArcadeSdkPackageVersion) - $(MicrosoftDotNetBuildTasksInstallersPackageVersion) - $(MicrosoftDotNetBuildTasksTemplatingPackageVersion) - $(MicrosoftDotNetBuildTasksWorkloadsPackageVersion) - $(MicrosoftDotNetHelixSdkPackageVersion) - $(MicrosoftDotNetSignToolPackageVersion) $(MicrosoftDotNetWebItemTemplates100PackageVersion) $(MicrosoftDotNetWebProjectTemplates100PackageVersion) - $(MicrosoftDotnetWinFormsProjectTemplatesPackageVersion) - $(MicrosoftDotNetWpfProjectTemplatesPackageVersion) - $(MicrosoftDotNetXliffTasksPackageVersion) - $(MicrosoftDotNetXUnitExtensionsPackageVersion) $(MicrosoftExtensionsConfigurationIniPackageVersion) $(MicrosoftExtensionsDependencyModelPackageVersion) $(MicrosoftExtensionsFileProvidersAbstractionsPackageVersion) @@ -210,17 +204,11 @@ This file should be imported by eng/Versions.props $(MicrosoftExtensionsLoggingAbstractionsPackageVersion) $(MicrosoftExtensionsLoggingConsolePackageVersion) $(MicrosoftExtensionsObjectPoolPackageVersion) - $(MicrosoftFSharpCompilerPackageVersion) $(MicrosoftJSInteropPackageVersion) - $(MicrosoftNetCompilersToolsetPackageVersion) - $(MicrosoftNetCompilersToolsetFrameworkPackageVersion) $(MicrosoftNETHostModelPackageVersion) $(MicrosoftNETILLinkTasksPackageVersion) $(MicrosoftNETRuntimeEmscripten3156Cachewinx64PackageVersion) - $(MicrosoftNETRuntimeEmscriptenSdkInternalPackageVersion) - $(MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion) $(MicrosoftNETSdkWindowsDesktopPackageVersion) - $(MicrosoftNETTestSdkPackageVersion) $(MicrosoftNETCoreAppRefPackageVersion) $(MicrosoftNETCorePlatformsPackageVersion) $(MicrosoftSourceLinkAzureReposGitPackageVersion) @@ -228,37 +216,10 @@ This file should be imported by eng/Versions.props $(MicrosoftSourceLinkCommonPackageVersion) $(MicrosoftSourceLinkGitHubPackageVersion) $(MicrosoftSourceLinkGitLabPackageVersion) - $(MicrosoftTemplateEngineAbstractionsPackageVersion) - $(MicrosoftTemplateEngineAuthoringTemplateVerifierPackageVersion) - $(MicrosoftTemplateEngineEdgePackageVersion) - $(MicrosoftTemplateEngineMocksPackageVersion) - $(MicrosoftTemplateEngineOrchestratorRunnableProjectsPackageVersion) - $(MicrosoftTemplateEngineTestHelperPackageVersion) - $(MicrosoftTemplateEngineUtilsPackageVersion) - $(MicrosoftTemplateSearchCommonPackageVersion) - $(MicrosoftTemplateSearchTemplateDiscoveryPackageVersion) - $(MicrosoftTestPlatformBuildPackageVersion) - $(MicrosoftTestPlatformCLIPackageVersion) $(MicrosoftWebXdtPackageVersion) $(MicrosoftWin32SystemEventsPackageVersion) $(MicrosoftWindowsDesktopAppInternalPackageVersion) $(MicrosoftWindowsDesktopAppRefPackageVersion) - $(NuGetBuildTasksPackageVersion) - $(NuGetBuildTasksConsolePackageVersion) - $(NuGetBuildTasksPackPackageVersion) - $(NuGetCommandLineXPlatPackageVersion) - $(NuGetCommandsPackageVersion) - $(NuGetCommonPackageVersion) - $(NuGetConfigurationPackageVersion) - $(NuGetCredentialsPackageVersion) - $(NuGetDependencyResolverCorePackageVersion) - $(NuGetFrameworksPackageVersion) - $(NuGetLibraryModelPackageVersion) - $(NuGetLocalizationPackageVersion) - $(NuGetPackagingPackageVersion) - $(NuGetProjectModelPackageVersion) - $(NuGetProtocolPackageVersion) - $(NuGetVersioningPackageVersion) $(SystemCodeDomPackageVersion) $(SystemCommandLinePackageVersion) $(SystemComponentModelCompositionPackageVersion) @@ -283,6 +244,61 @@ This file should be imported by eng/Versions.props $(SystemWindowsExtensionsPackageVersion) $(NETStandardLibraryRefPackageVersion) + + $(MicrosoftNETRuntimeEmscriptenSdkInternalPackageVersion) + + $(MicrosoftBuildPackageVersion) + $(MicrosoftBuildLocalizationPackageVersion) + + $(MicrosoftFSharpCompilerPackageVersion) + + $(MicrosoftCodeAnalysisPackageVersion) + $(MicrosoftCodeAnalysisBuildClientPackageVersion) + $(MicrosoftCodeAnalysisCSharpPackageVersion) + $(MicrosoftCodeAnalysisCSharpCodeStylePackageVersion) + $(MicrosoftCodeAnalysisCSharpFeaturesPackageVersion) + $(MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion) + $(MicrosoftCodeAnalysisExternalAccessHotReloadPackageVersion) + $(MicrosoftCodeAnalysisPublicApiAnalyzersPackageVersion) + $(MicrosoftCodeAnalysisWorkspacesCommonPackageVersion) + $(MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion) + $(MicrosoftNetCompilersToolsetPackageVersion) + $(MicrosoftNetCompilersToolsetFrameworkPackageVersion) + + $(MicrosoftBuildNuGetSdkResolverPackageVersion) + $(NuGetBuildTasksPackageVersion) + $(NuGetBuildTasksConsolePackageVersion) + $(NuGetBuildTasksPackPackageVersion) + $(NuGetCommandLineXPlatPackageVersion) + $(NuGetCommandsPackageVersion) + $(NuGetCommonPackageVersion) + $(NuGetConfigurationPackageVersion) + $(NuGetCredentialsPackageVersion) + $(NuGetDependencyResolverCorePackageVersion) + $(NuGetFrameworksPackageVersion) + $(NuGetLibraryModelPackageVersion) + $(NuGetLocalizationPackageVersion) + $(NuGetPackagingPackageVersion) + $(NuGetProjectModelPackageVersion) + $(NuGetProtocolPackageVersion) + $(NuGetVersioningPackageVersion) + + $(MicrosoftNETTestSdkPackageVersion) + $(MicrosoftTestPlatformBuildPackageVersion) + $(MicrosoftTestPlatformCLIPackageVersion) + + $(MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion) + $(MicrosoftCodeAnalysisRazorToolingInternalPackageVersion) + $(MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion) + + $(MicrosoftDotNetArcadeSdkPackageVersion) + $(MicrosoftDotNetBuildTasksInstallersPackageVersion) + $(MicrosoftDotNetBuildTasksTemplatingPackageVersion) + $(MicrosoftDotNetBuildTasksWorkloadsPackageVersion) + $(MicrosoftDotNetHelixSdkPackageVersion) + $(MicrosoftDotNetSignToolPackageVersion) + $(MicrosoftDotNetXliffTasksPackageVersion) + $(MicrosoftDotNetXUnitExtensionsPackageVersion) $(MicrosoftTestingPlatformPackageVersion) $(MSTestPackageVersion) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8fc58ea7af0a..7fdb955edb3c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef @@ -68,170 +68,170 @@ https://github.com/dotnet/dotnet 6a953e76162f3f079405f80e28664fa51b136740 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/msbuild + 2960e90f194e80f8f664ac573d456058bc4f5cd9 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/msbuild + 2960e90f194e80f8f664ac573d456058bc4f5cd9 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/fsharp + 89d788641914c5d0b87fddfa11f4df0b5cfaa73d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/microsoft/vstest + bbee830b0ef18eb5b4aa5daee65ae35a34f8c132 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/microsoft/vstest + bbee830b0ef18eb5b4aa5daee65ae35a34f8c132 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/microsoft/vstest + bbee830b0ef18eb5b4aa5daee65ae35a34f8c132 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/razor + 191feab170b690f6a4923072d1b6f6e00272d8a7 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/razor + 191feab170b690f6a4923072d1b6f6e00272d8a7 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/razor + 191feab170b690f6a4923072d1b6f6e00272d8a7 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef https://github.com/microsoft/testfx @@ -569,9 +564,9 @@ https://github.com/microsoft/testfx 2462bf58f6bf1460d767166d8f15390a9c6c7920 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef diff --git a/eng/common/core-templates/job/publish-build-assets.yml b/eng/common/core-templates/job/publish-build-assets.yml index b955fac6e13f..3437087c80fc 100644 --- a/eng/common/core-templates/job/publish-build-assets.yml +++ b/eng/common/core-templates/job/publish-build-assets.yml @@ -80,7 +80,7 @@ jobs: # If it's not devdiv, it's dnceng ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: name: NetCore1ESPool-Publishing-Internal - image: windows.vs2022.amd64 + image: windows.vs2019.amd64 os: windows steps: - ${{ if eq(parameters.is1ESPipeline, '') }}: diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index b942a79ef02d..9423d71ca3a2 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -293,11 +293,11 @@ stages: ${{ else }}: ${{ if eq(parameters.is1ESPipeline, true) }}: name: NetCore1ESPool-Publishing-Internal - image: windows.vs2022.amd64 + image: windows.vs2019.amd64 os: windows ${{ else }}: name: NetCore1ESPool-Publishing-Internal - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2019.amd64 steps: - template: /eng/common/core-templates/post-build/setup-maestro-vars.yml parameters: diff --git a/eng/common/internal-feed-operations.ps1 b/eng/common/internal-feed-operations.ps1 index c282d3ae403a..92b77347d990 100644 --- a/eng/common/internal-feed-operations.ps1 +++ b/eng/common/internal-feed-operations.ps1 @@ -26,7 +26,7 @@ function SetupCredProvider { $url = 'https://raw.githubusercontent.com/microsoft/artifacts-credprovider/master/helpers/installcredprovider.ps1' Write-Host "Writing the contents of 'installcredprovider.ps1' locally..." - Invoke-WebRequest $url -UseBasicParsing -OutFile installcredprovider.ps1 + Invoke-WebRequest $url -OutFile installcredprovider.ps1 Write-Host 'Installing plugin...' .\installcredprovider.ps1 -Force diff --git a/eng/common/post-build/nuget-verification.ps1 b/eng/common/post-build/nuget-verification.ps1 index eea88e653c91..ac5c69ffcac5 100644 --- a/eng/common/post-build/nuget-verification.ps1 +++ b/eng/common/post-build/nuget-verification.ps1 @@ -65,7 +65,7 @@ if ($NuGetExePath) { Write-Host "Downloading nuget.exe from $nugetExeUrl..." $ProgressPreference = 'SilentlyContinue' try { - Invoke-WebRequest $nugetExeUrl -UseBasicParsing -OutFile $downloadedNuGetExe + Invoke-WebRequest $nugetExeUrl -OutFile $downloadedNuGetExe $ProgressPreference = 'Continue' } catch { $ProgressPreference = 'Continue' diff --git a/eng/common/templates/variables/pool-providers.yml b/eng/common/templates/variables/pool-providers.yml index 18693ea120d5..e0b19c14a073 100644 --- a/eng/common/templates/variables/pool-providers.yml +++ b/eng/common/templates/variables/pool-providers.yml @@ -23,7 +23,7 @@ # # pool: # name: $(DncEngInternalBuildPool) -# demands: ImageOverride -equals windows.vs2022.amd64 +# demands: ImageOverride -equals windows.vs2019.amd64 variables: - ${{ if eq(variables['System.TeamProject'], 'internal') }}: - template: /eng/common/templates-official/variables/pool-providers.yml diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 049fe6db994e..578705ee4dbd 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -277,7 +277,7 @@ function GetDotNetInstallScript([string] $dotnetRoot) { Retry({ Write-Host "GET $uri" - Invoke-WebRequest $uri -UseBasicParsing -OutFile $installScript + Invoke-WebRequest $uri -OutFile $installScript }) } @@ -510,7 +510,7 @@ function InitializeXCopyMSBuild([string]$packageVersion, [bool]$install) { Write-Host "Downloading $packageName $packageVersion" $ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit Retry({ - Invoke-WebRequest "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/flat2/$packageName/$packageVersion/$packageName.$packageVersion.nupkg" -UseBasicParsing -OutFile $packagePath + Invoke-WebRequest "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/flat2/$packageName/$packageVersion/$packageName.$packageVersion.nupkg" -OutFile $packagePath }) if (!(Test-Path $packagePath)) { @@ -556,30 +556,23 @@ function LocateVisualStudio([object]$vsRequirements = $null){ Write-Host "Downloading vswhere $vswhereVersion" $ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit Retry({ - Invoke-WebRequest "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/vswhere/$vswhereVersion/vswhere.exe" -UseBasicParsing -OutFile $vswhereExe + Invoke-WebRequest "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/vswhere/$vswhereVersion/vswhere.exe" -OutFile $vswhereExe }) } - if (!$vsRequirements) { - if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { - $vsRequirements = $GlobalJson.tools.vs - } else { - $vsRequirements = $null - } - } - + if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'version') { $args += '-version' $args += $vsRequirements.version } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'components') { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component diff --git a/global.json b/global.json index 87ba29457b35..0daa834cedbd 100644 --- a/global.json +++ b/global.json @@ -7,7 +7,7 @@ "errorMessage": "The .NET SDK is not installed or is not configured correctly. Please run ./build to install the correct SDK version locally." }, "tools": { - "dotnet": "10.0.101", + "dotnet": "10.0.100", "runtimes": { "dotnet": [ "$(MicrosoftNETCorePlatformsPackageVersion)" @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26065.102", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26065.102", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25605.3", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25605.3", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 9c3ae962f2c12a5ea029f110aca9eb9e7509bdc2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 16 Jan 2026 02:02:15 +0000 Subject: [PATCH 388/392] Update dependencies from https://github.com/microsoft/testfx build 20260115.7 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.26064.3 -> To Version 2.1.0-preview.26065.7 MSTest From Version 4.1.0-preview.26064.3 -> To Version 4.1.0-preview.26065.7 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index a41041539a55..ec92048da30b 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props 2.1.0 - 2.1.0-preview.26064.3 - 4.1.0-preview.26064.3 + 2.1.0-preview.26065.7 + 4.1.0-preview.26065.7 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8fc58ea7af0a..3c0a16b4524d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -561,13 +561,13 @@ https://github.com/dotnet/dotnet 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - + https://github.com/microsoft/testfx - 2462bf58f6bf1460d767166d8f15390a9c6c7920 + f2ca2cf2507b769ba4e6609683619243588ee4c1 - + https://github.com/microsoft/testfx - 2462bf58f6bf1460d767166d8f15390a9c6c7920 + f2ca2cf2507b769ba4e6609683619243588ee4c1 https://github.com/dotnet/dotnet From e73cf35e2d6e5647382892a67269383c7ea2e572 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 16 Jan 2026 02:02:39 +0000 Subject: [PATCH 389/392] Update dependencies from https://github.com/microsoft/testfx build 20260115.7 On relative base path root Microsoft.Testing.Platform From Version 2.1.0-preview.26064.3 -> To Version 2.1.0-preview.26065.7 MSTest From Version 4.1.0-preview.26064.3 -> To Version 4.1.0-preview.26065.7 --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index aa57598ece77..7ecd9c967079 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -150,8 +150,8 @@ This file should be imported by eng/Versions.props 10.0.0-beta.25605.3 10.0.0-beta.25605.3 - 2.1.0-preview.26064.3 - 4.1.0-preview.26064.3 + 2.1.0-preview.26065.7 + 4.1.0-preview.26065.7 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7fdb955edb3c..74e05afcd479 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -556,13 +556,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet fad253f51b461736dfd3cd9c15977bb7493becef - + https://github.com/microsoft/testfx - 2462bf58f6bf1460d767166d8f15390a9c6c7920 + f2ca2cf2507b769ba4e6609683619243588ee4c1 - + https://github.com/microsoft/testfx - 2462bf58f6bf1460d767166d8f15390a9c6c7920 + f2ca2cf2507b769ba4e6609683619243588ee4c1 https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet From 6404a34ad23eeaa404c9d659bed7c32e83a2fa68 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 18 Jan 2026 19:00:56 -0600 Subject: [PATCH 390/392] [release/10.0.1xx] Bump analysislevel constants for .NET 10 release (#52511) --- .../AnalyzerReleases.Shipped.md | 13 +++ .../AnalyzerReleases.Unshipped.md | 11 -- .../Microsoft.NET.Sdk.Analyzers.targets | 4 +- .../GivenThatWeWantToFloatWarningLevels.cs | 109 +++++++++++++++--- 4 files changed, 109 insertions(+), 28 deletions(-) diff --git a/src/Microsoft.CodeAnalysis.NetAnalyzers/src/Microsoft.CodeAnalysis.NetAnalyzers/AnalyzerReleases.Shipped.md b/src/Microsoft.CodeAnalysis.NetAnalyzers/src/Microsoft.CodeAnalysis.NetAnalyzers/AnalyzerReleases.Shipped.md index 4e76ada6af3e..d13ae5e93b8e 100644 --- a/src/Microsoft.CodeAnalysis.NetAnalyzers/src/Microsoft.CodeAnalysis.NetAnalyzers/AnalyzerReleases.Shipped.md +++ b/src/Microsoft.CodeAnalysis.NetAnalyzers/src/Microsoft.CodeAnalysis.NetAnalyzers/AnalyzerReleases.Shipped.md @@ -362,3 +362,16 @@ CA2262 | Usage | Info | ProvideHttpClientHandlerMaxResponseHeaderLengthValueCorr CA2263 | Usage | Info | PreferGenericOverloadsAnalyzer, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2263) CA2264 | Usage | Warning | DoNotPassNonNullableValueToArgumentNullExceptionThrowIfNull, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2264) CA2265 | Usage | Warning | DoNotCompareSpanToNullAnalyzer, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2265) + +## Release 10.0 + +### New Rules + +Rule ID | Category | Severity | Notes +--------|----------|----------|------- +CA1873 | Performance | Info | AvoidPotentiallyExpensiveCallWhenLoggingAnalyzer, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1873) +CA1874 | Performance | Info | UseRegexMembers, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1874) +CA1875 | Performance | Info | UseRegexMembers, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1875) +CA2023 | Reliability | Warning | LoggerMessageDefineAnalyzer, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2023) +CA2024 | Reliability | Warning | DoNotUseEndOfStreamInAsyncMethods, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2024) +CA2025 | Reliability | Disabled | DoNotPassDisposablesIntoUnawaitedTasksAnalyzer, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2025) diff --git a/src/Microsoft.CodeAnalysis.NetAnalyzers/src/Microsoft.CodeAnalysis.NetAnalyzers/AnalyzerReleases.Unshipped.md b/src/Microsoft.CodeAnalysis.NetAnalyzers/src/Microsoft.CodeAnalysis.NetAnalyzers/AnalyzerReleases.Unshipped.md index 0ecf6597797e..cdf4f1397e0b 100644 --- a/src/Microsoft.CodeAnalysis.NetAnalyzers/src/Microsoft.CodeAnalysis.NetAnalyzers/AnalyzerReleases.Unshipped.md +++ b/src/Microsoft.CodeAnalysis.NetAnalyzers/src/Microsoft.CodeAnalysis.NetAnalyzers/AnalyzerReleases.Unshipped.md @@ -1,12 +1 @@ ; Please do not edit this file manually, it should only be updated through code fix application. - -### New Rules - -Rule ID | Category | Severity | Notes ---------|----------|----------|------- -CA1873 | Performance | Info | AvoidPotentiallyExpensiveCallWhenLoggingAnalyzer, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1873) -CA1874 | Performance | Info | UseRegexMembers, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1874) -CA1875 | Performance | Info | UseRegexMembers, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1875) -CA2023 | Reliability | Warning | LoggerMessageDefineAnalyzer, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2023) -CA2024 | Reliability | Warning | DoNotUseEndOfStreamInAsyncMethods, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2024) -CA2025 | Reliability | Disabled | DoNotPassDisposablesIntoUnawaitedTasksAnalyzer, [Documentation](https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2025) diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.Analyzers.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.Analyzers.targets index bfe44a366470..0c206deb1e52 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.Analyzers.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.Analyzers.targets @@ -22,8 +22,8 @@ Copyright (c) .NET Foundation. All rights reserved. <_NoneAnalysisLevel>4.0 - <_LatestAnalysisLevel>9.0 - <_PreviewAnalysisLevel>10.0 + <_LatestAnalysisLevel>10.0 + <_PreviewAnalysisLevel>11.0 Path.GetFileName(file).Equals(expectedGlobalConfig, StringComparison.OrdinalIgnoreCase)); + matchingConfigs.Should().ContainSingle( + $""" + Expected to find globalconfig '{expectedGlobalConfig}' for AnalysisLevel=latest. + + To fix this test failure: + (1) Update the AnalyzerReleases files: + - Edit 'src/Microsoft.CodeAnalysis.NetAnalyzers/src/Microsoft.CodeAnalysis.NetAnalyzers/AnalyzerReleases.Shipped.md' + to create a new release section for the prior analysis level version (e.g., '## Release 10.0'). + - Move all entries from 'AnalyzerReleases.Unshipped.md' to the new release section. + - Repeat for C#/VB.NET specific files if they have unshipped entries. + (2) Update _LatestAnalysisLevel and _PreviewAnalysisLevel in + 'src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.Analyzers.targets'. + (3) Rebuild the SDK to regenerate the globalconfig files. + """); + + var globalConfigPath = matchingConfigs.Single(); + File.Exists(globalConfigPath).Should().BeTrue( + $"The globalconfig file '{expectedGlobalConfig}' should exist on disk."); + } + [InlineData("preview")] [InlineData("latest")] [InlineData("none")] @@ -277,23 +357,22 @@ static void Main() [InlineData("9.0", "", "true", "")] [InlineData("9", "default", "false", "Security")] [InlineData("9.0", "", "true", "Usage")] + [InlineData("10", "default", "false", "")] + [InlineData("10.0", "", "true", "")] + [InlineData("10", "default", "false", "Security")] + [InlineData("10.0", "", "true", "Usage")] [RequiresMSBuildVersionTheory("16.8")] public void It_maps_analysis_properties_to_globalconfig(string analysisLevel, string analysisMode, string codeAnalysisTreatWarningsAsErrors, string category) { // Documentation: https://learn.microsoft.com/dotnet/core/project-sdk/msbuild-props#code-analysis-properties - + // // NOTE: This test will fail for "latest" analysisLevel when the "_LatestAnalysisLevel" property - // is bumped in Microsoft.NET.Sdk.Analyzers.targets without a corresponding change in dotnet/roslyn-analyzers - // repo that generates and maps to the globalconfig. This is an important regression test to ensure the + // is bumped in Microsoft.NET.Sdk.Analyzers.targets without a corresponding change in the the analyzers + // source in this repo that generates and maps to the globalconfig. This is an important regression test to ensure the // "latest" analysisLevel setting keeps working as expected when moving to a newer version of the .NET SDK. - // Following changes are needed to ensure the failing test scenario passes again: - // 1. In dotnet/roslyn-analyzers repo: - // a. Update "src/NetAnalyzers/Core/AnalyzerReleases.Shipped.md"to create a new release - // for the prior "_LatestAnalysisLevel" value and move all the entries from - // "src/NetAnalyzers/Core/AnalyzerReleases.Unshipped.md" to the shipped file. - // For example, see https://github.com/dotnet/roslyn-analyzers/pull/6246. - // 2. In dotnet/sdk repo: - // a. Consume the new Microsoft.CodeAnalysis.NetAnalyzers package with the above sha. + // + // See the It_has_globalconfig_for_latest_analysis_level test for more explicit validation and detailed + // instructions on what changes are needed when bumping to a new TFM. var testProject = new TestProject { From e3b054fa926c4244c3f9bd55af70fbb998f0c464 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 01:01:53 +0000 Subject: [PATCH 391/392] Reset files to release/10.0.2xx Reset patterns: - global.json - NuGet.config - eng/Version.Details.xml - eng/Version.Details.props - eng/common/* --- NuGet.config | 6 +- eng/Version.Details.props | 400 ++++----- eng/Version.Details.xml | 793 +++++++++--------- .../job/publish-build-assets.yml | 2 +- .../core-templates/post-build/post-build.yml | 4 +- eng/common/internal-feed-operations.ps1 | 2 +- eng/common/post-build/nuget-verification.ps1 | 2 +- .../templates/variables/pool-providers.yml | 2 +- eng/common/tools.ps1 | 19 +- global.json | 6 +- 10 files changed, 622 insertions(+), 614 deletions(-) diff --git a/NuGet.config b/NuGet.config index 47d1214ee661..7e04985571cd 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,8 @@ - + + @@ -39,6 +40,9 @@ + + + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index ec92048da30b..7ecd9c967079 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -5,149 +5,167 @@ This file should be imported by eng/Versions.props --> - - 10.0.3-servicing.26065.102 - 10.0.3-servicing.26065.102 - 10.0.3-servicing.26065.102 - 10.0.3-servicing.26065.102 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.3-servicing.26065.102 - 10.0.0-preview.26065.102 - 10.0.3 - 10.0.3 - 18.0.10 - 18.0.10-servicing-26065-102 - 7.0.2-rc.6602 - 10.0.103 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 10.0.0-preview.26065.102 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 2.0.0-preview.1.26065.102 - 2.2.3 - 10.0.0-beta.26065.102 - 10.0.0-beta.26065.102 - 10.0.0-beta.26065.102 - 10.0.0-beta.26065.102 - 10.0.0-beta.26065.102 - 10.0.0-beta.26065.102 - 10.0.3 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.3-servicing.26065.102 - 10.0.0-beta.26065.102 - 10.0.0-beta.26065.102 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 14.0.103-servicing.26065.102 - 10.0.3 - 5.0.0-2.26065.102 - 5.0.0-2.26065.102 - 10.0.3-servicing.26065.102 - 10.0.3 - 10.0.3 - 10.0.0-preview.7.25377.103 - 10.0.0-preview.26065.102 - 10.0.3-servicing.26065.102 - 18.0.1-release-26065-102 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103 - 10.0.103-servicing.26065.102 - 10.0.103 - 10.0.103-servicing.26065.102 - 10.0.103 - 10.0.103 - 10.0.103-servicing.26065.102 - 18.0.1-release-26065-102 - 18.0.1-release-26065-102 - 3.2.3 - 10.0.3 - 10.0.3-servicing.26065.102 - 10.0.3 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 7.0.2-rc.6602 - 10.0.3 - 2.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 - 10.0.3 + + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + 10.0.200-preview.25569.1 + + 10.0.1-servicing.25569.105 + 10.0.1-servicing.25569.105 + 10.0.1-servicing.25569.105 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 10.0.0-beta.25569.105 + 2.0.0-preview.1.25569.105 + 2.2.1-beta.25569.105 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.0-beta.25569.105 + 10.0.0-beta.25569.105 + 10.0.0-beta.25569.105 + 10.0.0-beta.25569.105 + 10.0.0-beta.25569.105 + 3.2.1-servicing.25569.105 + 10.0.1 + 10.0.1-servicing.25569.105 + 10.0.1 + 10.0.1 + 2.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 + 10.0.1 2.1.0 + + 10.0.0-preview.7.25377.103 + + 18.3.0-preview-25610-02 + 18.3.0-preview-25610-02 + + 15.1.200-servicing.25605.1 + + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + 5.3.0-2.25610.11 + + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + 7.1.0-preview.1.42 + + 18.3.0-preview-25609-01 + 18.3.0-preview-25609-01 + 18.3.0-preview-25609-01 + + 10.0.0-preview.25552.2 + 10.0.0-preview.25552.2 + 10.0.0-preview.25552.2 + + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 + 10.0.0-beta.25605.3 2.1.0-preview.26065.7 4.1.0-preview.26065.7 - + + $(MicrosoftTemplateEngineAbstractionsPackageVersion) + $(MicrosoftTemplateEngineAuthoringTemplateVerifierPackageVersion) + $(MicrosoftTemplateEngineEdgePackageVersion) + $(MicrosoftTemplateEngineMocksPackageVersion) + $(MicrosoftTemplateEngineOrchestratorRunnableProjectsPackageVersion) + $(MicrosoftTemplateEngineTestHelperPackageVersion) + $(MicrosoftTemplateEngineUtilsPackageVersion) + $(MicrosoftTemplateSearchCommonPackageVersion) + $(MicrosoftTemplateSearchTemplateDiscoveryPackageVersion) + $(dotnetdevcertsPackageVersion) $(dotnetuserjwtsPackageVersion) $(dotnetusersecretsPackageVersion) @@ -170,37 +188,13 @@ This file should be imported by eng/Versions.props $(MicrosoftAspNetCoreMetadataPackageVersion) $(MicrosoftAspNetCoreMvcAnalyzersPackageVersion) $(MicrosoftAspNetCoreMvcApiAnalyzersPackageVersion) - $(MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion) $(MicrosoftAspNetCoreTestHostPackageVersion) $(MicrosoftBclAsyncInterfacesPackageVersion) - $(MicrosoftBuildPackageVersion) - $(MicrosoftBuildLocalizationPackageVersion) - $(MicrosoftBuildNuGetSdkResolverPackageVersion) $(MicrosoftBuildTasksGitPackageVersion) - $(MicrosoftCodeAnalysisPackageVersion) - $(MicrosoftCodeAnalysisBuildClientPackageVersion) - $(MicrosoftCodeAnalysisCSharpPackageVersion) - $(MicrosoftCodeAnalysisCSharpCodeStylePackageVersion) - $(MicrosoftCodeAnalysisCSharpFeaturesPackageVersion) - $(MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion) - $(MicrosoftCodeAnalysisPublicApiAnalyzersPackageVersion) - $(MicrosoftCodeAnalysisRazorToolingInternalPackageVersion) - $(MicrosoftCodeAnalysisWorkspacesCommonPackageVersion) - $(MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion) $(MicrosoftDeploymentDotNetReleasesPackageVersion) $(MicrosoftDiaSymReaderPackageVersion) - $(MicrosoftDotNetArcadeSdkPackageVersion) - $(MicrosoftDotNetBuildTasksInstallersPackageVersion) - $(MicrosoftDotNetBuildTasksTemplatingPackageVersion) - $(MicrosoftDotNetBuildTasksWorkloadsPackageVersion) - $(MicrosoftDotNetHelixSdkPackageVersion) - $(MicrosoftDotNetSignToolPackageVersion) $(MicrosoftDotNetWebItemTemplates100PackageVersion) $(MicrosoftDotNetWebProjectTemplates100PackageVersion) - $(MicrosoftDotnetWinFormsProjectTemplatesPackageVersion) - $(MicrosoftDotNetWpfProjectTemplatesPackageVersion) - $(MicrosoftDotNetXliffTasksPackageVersion) - $(MicrosoftDotNetXUnitExtensionsPackageVersion) $(MicrosoftExtensionsConfigurationIniPackageVersion) $(MicrosoftExtensionsDependencyModelPackageVersion) $(MicrosoftExtensionsFileProvidersAbstractionsPackageVersion) @@ -210,17 +204,11 @@ This file should be imported by eng/Versions.props $(MicrosoftExtensionsLoggingAbstractionsPackageVersion) $(MicrosoftExtensionsLoggingConsolePackageVersion) $(MicrosoftExtensionsObjectPoolPackageVersion) - $(MicrosoftFSharpCompilerPackageVersion) $(MicrosoftJSInteropPackageVersion) - $(MicrosoftNetCompilersToolsetPackageVersion) - $(MicrosoftNetCompilersToolsetFrameworkPackageVersion) $(MicrosoftNETHostModelPackageVersion) $(MicrosoftNETILLinkTasksPackageVersion) $(MicrosoftNETRuntimeEmscripten3156Cachewinx64PackageVersion) - $(MicrosoftNETRuntimeEmscriptenSdkInternalPackageVersion) - $(MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion) $(MicrosoftNETSdkWindowsDesktopPackageVersion) - $(MicrosoftNETTestSdkPackageVersion) $(MicrosoftNETCoreAppRefPackageVersion) $(MicrosoftNETCorePlatformsPackageVersion) $(MicrosoftSourceLinkAzureReposGitPackageVersion) @@ -228,37 +216,10 @@ This file should be imported by eng/Versions.props $(MicrosoftSourceLinkCommonPackageVersion) $(MicrosoftSourceLinkGitHubPackageVersion) $(MicrosoftSourceLinkGitLabPackageVersion) - $(MicrosoftTemplateEngineAbstractionsPackageVersion) - $(MicrosoftTemplateEngineAuthoringTemplateVerifierPackageVersion) - $(MicrosoftTemplateEngineEdgePackageVersion) - $(MicrosoftTemplateEngineMocksPackageVersion) - $(MicrosoftTemplateEngineOrchestratorRunnableProjectsPackageVersion) - $(MicrosoftTemplateEngineTestHelperPackageVersion) - $(MicrosoftTemplateEngineUtilsPackageVersion) - $(MicrosoftTemplateSearchCommonPackageVersion) - $(MicrosoftTemplateSearchTemplateDiscoveryPackageVersion) - $(MicrosoftTestPlatformBuildPackageVersion) - $(MicrosoftTestPlatformCLIPackageVersion) $(MicrosoftWebXdtPackageVersion) $(MicrosoftWin32SystemEventsPackageVersion) $(MicrosoftWindowsDesktopAppInternalPackageVersion) $(MicrosoftWindowsDesktopAppRefPackageVersion) - $(NuGetBuildTasksPackageVersion) - $(NuGetBuildTasksConsolePackageVersion) - $(NuGetBuildTasksPackPackageVersion) - $(NuGetCommandLineXPlatPackageVersion) - $(NuGetCommandsPackageVersion) - $(NuGetCommonPackageVersion) - $(NuGetConfigurationPackageVersion) - $(NuGetCredentialsPackageVersion) - $(NuGetDependencyResolverCorePackageVersion) - $(NuGetFrameworksPackageVersion) - $(NuGetLibraryModelPackageVersion) - $(NuGetLocalizationPackageVersion) - $(NuGetPackagingPackageVersion) - $(NuGetProjectModelPackageVersion) - $(NuGetProtocolPackageVersion) - $(NuGetVersioningPackageVersion) $(SystemCodeDomPackageVersion) $(SystemCommandLinePackageVersion) $(SystemComponentModelCompositionPackageVersion) @@ -283,6 +244,61 @@ This file should be imported by eng/Versions.props $(SystemWindowsExtensionsPackageVersion) $(NETStandardLibraryRefPackageVersion) + + $(MicrosoftNETRuntimeEmscriptenSdkInternalPackageVersion) + + $(MicrosoftBuildPackageVersion) + $(MicrosoftBuildLocalizationPackageVersion) + + $(MicrosoftFSharpCompilerPackageVersion) + + $(MicrosoftCodeAnalysisPackageVersion) + $(MicrosoftCodeAnalysisBuildClientPackageVersion) + $(MicrosoftCodeAnalysisCSharpPackageVersion) + $(MicrosoftCodeAnalysisCSharpCodeStylePackageVersion) + $(MicrosoftCodeAnalysisCSharpFeaturesPackageVersion) + $(MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion) + $(MicrosoftCodeAnalysisExternalAccessHotReloadPackageVersion) + $(MicrosoftCodeAnalysisPublicApiAnalyzersPackageVersion) + $(MicrosoftCodeAnalysisWorkspacesCommonPackageVersion) + $(MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion) + $(MicrosoftNetCompilersToolsetPackageVersion) + $(MicrosoftNetCompilersToolsetFrameworkPackageVersion) + + $(MicrosoftBuildNuGetSdkResolverPackageVersion) + $(NuGetBuildTasksPackageVersion) + $(NuGetBuildTasksConsolePackageVersion) + $(NuGetBuildTasksPackPackageVersion) + $(NuGetCommandLineXPlatPackageVersion) + $(NuGetCommandsPackageVersion) + $(NuGetCommonPackageVersion) + $(NuGetConfigurationPackageVersion) + $(NuGetCredentialsPackageVersion) + $(NuGetDependencyResolverCorePackageVersion) + $(NuGetFrameworksPackageVersion) + $(NuGetLibraryModelPackageVersion) + $(NuGetLocalizationPackageVersion) + $(NuGetPackagingPackageVersion) + $(NuGetProjectModelPackageVersion) + $(NuGetProtocolPackageVersion) + $(NuGetVersioningPackageVersion) + + $(MicrosoftNETTestSdkPackageVersion) + $(MicrosoftTestPlatformBuildPackageVersion) + $(MicrosoftTestPlatformCLIPackageVersion) + + $(MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion) + $(MicrosoftCodeAnalysisRazorToolingInternalPackageVersion) + $(MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion) + + $(MicrosoftDotNetArcadeSdkPackageVersion) + $(MicrosoftDotNetBuildTasksInstallersPackageVersion) + $(MicrosoftDotNetBuildTasksTemplatingPackageVersion) + $(MicrosoftDotNetBuildTasksWorkloadsPackageVersion) + $(MicrosoftDotNetHelixSdkPackageVersion) + $(MicrosoftDotNetSignToolPackageVersion) + $(MicrosoftDotNetXliffTasksPackageVersion) + $(MicrosoftDotNetXUnitExtensionsPackageVersion) $(MicrosoftTestingPlatformPackageVersion) $(MSTestPackageVersion) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3c0a16b4524d..74e05afcd479 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/templating + 069bda6132d6ac2134cc9b26d651ccb825ff212d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef @@ -68,170 +68,170 @@ https://github.com/dotnet/dotnet 6a953e76162f3f079405f80e28664fa51b136740 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/msbuild + 2960e90f194e80f8f664ac573d456058bc4f5cd9 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/msbuild + 2960e90f194e80f8f664ac573d456058bc4f5cd9 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/fsharp + 89d788641914c5d0b87fddfa11f4df0b5cfaa73d - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/nuget/nuget.client + b5efdd1f17df11700c9383def6ece79a40218ccd - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/microsoft/vstest + bbee830b0ef18eb5b4aa5daee65ae35a34f8c132 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/microsoft/vstest + bbee830b0ef18eb5b4aa5daee65ae35a34f8c132 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/microsoft/vstest + bbee830b0ef18eb5b4aa5daee65ae35a34f8c132 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/razor + 191feab170b690f6a4923072d1b6f6e00272d8a7 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/razor + 191feab170b690f6a4923072d1b6f6e00272d8a7 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/razor + 191feab170b690f6a4923072d1b6f6e00272d8a7 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 - - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/roslyn + 46a48b8c1dfce7c35da115308bedd6a5954fd78a - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://github.com/dotnet/arcade + 774a2ef8d2777c50d047d6776ced33260822cad6 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef https://github.com/microsoft/testfx @@ -569,9 +564,9 @@ https://github.com/microsoft/testfx f2ca2cf2507b769ba4e6609683619243588ee4c1 - - https://github.com/dotnet/dotnet - 99f9e99f92d73ade5453ba8edba5d72247f3cd11 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + fad253f51b461736dfd3cd9c15977bb7493becef diff --git a/eng/common/core-templates/job/publish-build-assets.yml b/eng/common/core-templates/job/publish-build-assets.yml index b955fac6e13f..3437087c80fc 100644 --- a/eng/common/core-templates/job/publish-build-assets.yml +++ b/eng/common/core-templates/job/publish-build-assets.yml @@ -80,7 +80,7 @@ jobs: # If it's not devdiv, it's dnceng ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: name: NetCore1ESPool-Publishing-Internal - image: windows.vs2022.amd64 + image: windows.vs2019.amd64 os: windows steps: - ${{ if eq(parameters.is1ESPipeline, '') }}: diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index b942a79ef02d..9423d71ca3a2 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -293,11 +293,11 @@ stages: ${{ else }}: ${{ if eq(parameters.is1ESPipeline, true) }}: name: NetCore1ESPool-Publishing-Internal - image: windows.vs2022.amd64 + image: windows.vs2019.amd64 os: windows ${{ else }}: name: NetCore1ESPool-Publishing-Internal - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2019.amd64 steps: - template: /eng/common/core-templates/post-build/setup-maestro-vars.yml parameters: diff --git a/eng/common/internal-feed-operations.ps1 b/eng/common/internal-feed-operations.ps1 index c282d3ae403a..92b77347d990 100644 --- a/eng/common/internal-feed-operations.ps1 +++ b/eng/common/internal-feed-operations.ps1 @@ -26,7 +26,7 @@ function SetupCredProvider { $url = 'https://raw.githubusercontent.com/microsoft/artifacts-credprovider/master/helpers/installcredprovider.ps1' Write-Host "Writing the contents of 'installcredprovider.ps1' locally..." - Invoke-WebRequest $url -UseBasicParsing -OutFile installcredprovider.ps1 + Invoke-WebRequest $url -OutFile installcredprovider.ps1 Write-Host 'Installing plugin...' .\installcredprovider.ps1 -Force diff --git a/eng/common/post-build/nuget-verification.ps1 b/eng/common/post-build/nuget-verification.ps1 index eea88e653c91..ac5c69ffcac5 100644 --- a/eng/common/post-build/nuget-verification.ps1 +++ b/eng/common/post-build/nuget-verification.ps1 @@ -65,7 +65,7 @@ if ($NuGetExePath) { Write-Host "Downloading nuget.exe from $nugetExeUrl..." $ProgressPreference = 'SilentlyContinue' try { - Invoke-WebRequest $nugetExeUrl -UseBasicParsing -OutFile $downloadedNuGetExe + Invoke-WebRequest $nugetExeUrl -OutFile $downloadedNuGetExe $ProgressPreference = 'Continue' } catch { $ProgressPreference = 'Continue' diff --git a/eng/common/templates/variables/pool-providers.yml b/eng/common/templates/variables/pool-providers.yml index 18693ea120d5..e0b19c14a073 100644 --- a/eng/common/templates/variables/pool-providers.yml +++ b/eng/common/templates/variables/pool-providers.yml @@ -23,7 +23,7 @@ # # pool: # name: $(DncEngInternalBuildPool) -# demands: ImageOverride -equals windows.vs2022.amd64 +# demands: ImageOverride -equals windows.vs2019.amd64 variables: - ${{ if eq(variables['System.TeamProject'], 'internal') }}: - template: /eng/common/templates-official/variables/pool-providers.yml diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 049fe6db994e..578705ee4dbd 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -277,7 +277,7 @@ function GetDotNetInstallScript([string] $dotnetRoot) { Retry({ Write-Host "GET $uri" - Invoke-WebRequest $uri -UseBasicParsing -OutFile $installScript + Invoke-WebRequest $uri -OutFile $installScript }) } @@ -510,7 +510,7 @@ function InitializeXCopyMSBuild([string]$packageVersion, [bool]$install) { Write-Host "Downloading $packageName $packageVersion" $ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit Retry({ - Invoke-WebRequest "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/flat2/$packageName/$packageVersion/$packageName.$packageVersion.nupkg" -UseBasicParsing -OutFile $packagePath + Invoke-WebRequest "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/flat2/$packageName/$packageVersion/$packageName.$packageVersion.nupkg" -OutFile $packagePath }) if (!(Test-Path $packagePath)) { @@ -556,30 +556,23 @@ function LocateVisualStudio([object]$vsRequirements = $null){ Write-Host "Downloading vswhere $vswhereVersion" $ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit Retry({ - Invoke-WebRequest "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/vswhere/$vswhereVersion/vswhere.exe" -UseBasicParsing -OutFile $vswhereExe + Invoke-WebRequest "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/vswhere/$vswhereVersion/vswhere.exe" -OutFile $vswhereExe }) } - if (!$vsRequirements) { - if (Get-Member -InputObject $GlobalJson.tools -Name 'vs' -ErrorAction SilentlyContinue) { - $vsRequirements = $GlobalJson.tools.vs - } else { - $vsRequirements = $null - } - } - + if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs } $args = @('-latest', '-format', 'json', '-requires', 'Microsoft.Component.MSBuild', '-products', '*') if (!$excludePrereleaseVS) { $args += '-prerelease' } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'version' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'version') { $args += '-version' $args += $vsRequirements.version } - if ($vsRequirements -and (Get-Member -InputObject $vsRequirements -Name 'components' -ErrorAction SilentlyContinue)) { + if (Get-Member -InputObject $vsRequirements -Name 'components') { foreach ($component in $vsRequirements.components) { $args += '-requires' $args += $component diff --git a/global.json b/global.json index 87ba29457b35..0daa834cedbd 100644 --- a/global.json +++ b/global.json @@ -7,7 +7,7 @@ "errorMessage": "The .NET SDK is not installed or is not configured correctly. Please run ./build to install the correct SDK version locally." }, "tools": { - "dotnet": "10.0.101", + "dotnet": "10.0.100", "runtimes": { "dotnet": [ "$(MicrosoftNETCorePlatformsPackageVersion)" @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26065.102", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26065.102", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25605.3", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25605.3", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 9f346ad7369fb9a2134b4733ca61bc9ceac5926b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 05:43:31 +0000 Subject: [PATCH 392/392] Reset files to release/10.0.3xx Reset patterns: - global.json - NuGet.config - eng/Version.Details.xml - eng/Version.Details.props - eng/common/* --- eng/Version.Details.props | 4 ++-- eng/Version.Details.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 7ecd9c967079..1ed75535bbc4 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -150,8 +150,8 @@ This file should be imported by eng/Versions.props 10.0.0-beta.25605.3 10.0.0-beta.25605.3 - 2.1.0-preview.26065.7 - 4.1.0-preview.26065.7 + 2.1.0-preview.25571.1 + 4.1.0-preview.25571.1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 74e05afcd479..7592ec421964 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -556,13 +556,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet fad253f51b461736dfd3cd9c15977bb7493becef - + https://github.com/microsoft/testfx - f2ca2cf2507b769ba4e6609683619243588ee4c1 + 43e592148ac1c7916908477bdffcf2a345affa6d - + https://github.com/microsoft/testfx - f2ca2cf2507b769ba4e6609683619243588ee4c1 + 43e592148ac1c7916908477bdffcf2a345affa6d https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet