From 259b2c3d40c4413cc3913f57ac74e6c1beda268f Mon Sep 17 00:00:00 2001 From: Chet Husk Date: Mon, 7 Jul 2025 22:45:24 -0500 Subject: [PATCH 001/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] [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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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/194] 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 38b1552daf6e132cf6b2964ffc03446ffb6b2c98 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 1 Oct 2025 02:05:08 +0000 Subject: [PATCH 112/194] 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 113/194] 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 114/194] 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 0fbb3ccf8427be2c3e353917dfe8e2a394f704b1 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 4 Oct 2025 16:57:32 +0000 Subject: [PATCH 115/194] 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 1cec95b9f6eea18a534134ae76f4d4c57cd8aa79 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 7 Oct 2025 10:55:30 -0700 Subject: [PATCH 116/194] 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 117/194] 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 118/194] 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 742ebeff52d4fabb10407ef3158ebc07da382aa6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 8 Oct 2025 02:03:36 +0000 Subject: [PATCH 119/194] 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 120/194] 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 ab5cfe20d0632f8f5e78582f39b5b7d067b4f74a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 8 Oct 2025 04:38:06 +0000 Subject: [PATCH 121/194] 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 5bed3f98e76ea66cbbbec760872e8fa282616135 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 8 Oct 2025 22:35:18 +0000 Subject: [PATCH 122/194] 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 26dc9fe1ba66bfaf4ef0003aeab0a34a52db38cd Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 10 Oct 2025 08:28:24 +0000 Subject: [PATCH 123/194] 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 124/194] 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 5f17621887a6d414525ae627e598af6921d077b3 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 10 Oct 2025 22:41:38 +0000 Subject: [PATCH 125/194] 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 759e1e2e965ab5f5e84159eb3a410c85b87ba4fd Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 11 Oct 2025 00:09:31 +0000 Subject: [PATCH 126/194] 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 6b4eb87b95d6f894d51d4c88f85dcb3aa796bf42 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 11 Oct 2025 00:44:44 +0000 Subject: [PATCH 127/194] 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 0ffee2958d92c65c7a619a3016a6c73e89dfdfa8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 11 Oct 2025 02:02:08 +0000 Subject: [PATCH 128/194] 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 129/194] 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 269c941f73509fef03a6d263b6f3e938bd56ad5c Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 05:40:52 +0000 Subject: [PATCH 130/194] 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 b69591d7583a3ba7cebdc1b1f199c2e93d9f9a2c Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 13:04:05 +0000 Subject: [PATCH 131/194] 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 e3526b37fe6d91fea3473e0328ea0bf03607a1f9 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 16:10:13 +0000 Subject: [PATCH 132/194] 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 eb0e1935d21396a8bdd7576afe1e9434fc6ddd87 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 14 Oct 2025 20:37:27 +0000 Subject: [PATCH 133/194] 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 f0116723bcd70bae18615b4707ab1cb938a4f35e Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 03:27:57 +0000 Subject: [PATCH 134/194] 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 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 135/194] [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 136/194] [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 137/194] 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 138/194] 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 600e85761eca35217c200e4e4813b8c22f99bae6 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 18:52:08 +0000 Subject: [PATCH 139/194] 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 941222f0764f82bebdc353d1aa7f8ccc5715ca4d Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 19:13:09 +0000 Subject: [PATCH 140/194] 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 93e7ea4742cc00602f5c1e1132fae4a7a31e85e8 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 21:14:42 +0000 Subject: [PATCH 141/194] 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 f7ee419e3d308a8e4609db510c45e84d902e879d Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 22:39:11 +0000 Subject: [PATCH 142/194] 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 486be2466240e17c5962ea03f4e3894b20667cb1 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 15 Oct 2025 23:46:39 +0000 Subject: [PATCH 143/194] 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 e504efbdade0a91662ef71d2a359e67ce182def2 Mon Sep 17 00:00:00 2001 From: Jacques Eloff Date: Wed, 15 Oct 2025 16:47:15 -0700 Subject: [PATCH 144/194] 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 145/194] 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 146/194] 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 147/194] 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 6e933b19d788197bc4d043f128186634b3bff3d5 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 16 Oct 2025 03:19:48 +0000 Subject: [PATCH 148/194] 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 149/194] 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 150/194] 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 e2ac2be0199e7fa417b47ba9b91b743339c4e820 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 17 Oct 2025 02:02:28 +0000 Subject: [PATCH 151/194] 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 06d715c3ade5a3a7c1e4a90037ff1c921f918c20 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 04:57:35 +0000 Subject: [PATCH 152/194] 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 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 153/194] 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 f116e64e2f61df92d627d1dfc0215fedfa59b801 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 17:14:11 +0000 Subject: [PATCH 154/194] 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 155/194] 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 750b80323a5edba6f7e1c6d265dcf9dbc5a8838e Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 22:58:38 +0000 Subject: [PATCH 156/194] 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 c94cfbb8ce36219cd0824dcb9c9ec02557682452 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 17 Oct 2025 23:08:36 +0000 Subject: [PATCH 157/194] 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 158/194] 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 159/194] 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 160/194] 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 161/194] 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 162/194] 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 163/194] 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 89ca9dc8585afe67f96a1eb03be318fc77c86c6a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Oct 2025 02:02:44 +0000 Subject: [PATCH 164/194] 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 165/194] 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 166/194] 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 167/194] 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 8da85111fbdb9200a21288140950d7951d594936 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Tue, 28 Oct 2025 08:37:28 +0000 Subject: [PATCH 168/194] 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 169/194] 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 bd8ff52a950627d432878cee33a0c3696836df75 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Tue, 28 Oct 2025 13:43:39 +0000 Subject: [PATCH 170/194] 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 85f11839d85214ab4563f036c52dc95db37fab16 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 4 Nov 2025 10:25:03 -0800 Subject: [PATCH 171/194] 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 172/194] 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 173/194] 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 174/194] 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 175/194] 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 176/194] 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 177/194] 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 178/194] 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 179/194] 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 180/194] 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 181/194] 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 182/194] 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 183/194] [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 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 184/194] [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 185/194] [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 186/194] [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 72c1837218daf1ed189fa0be81323504561c1a90 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Fri, 14 Nov 2025 15:11:59 -0800 Subject: [PATCH 187/194] 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 a3fcf8ec1048dd1a69f6e1fb923eec1218ec6f3d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 15 Nov 2025 02:04:42 +0000 Subject: [PATCH 188/194] 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 d63ffbbebc0cae087e64cafdc933b2f509340f50 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 21 Nov 2025 02:02:31 +0000 Subject: [PATCH 189/194] 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 d92dd7be3d430fd6311725bf16e305f96ef4a360 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 22 Nov 2025 02:02:24 +0000 Subject: [PATCH 190/194] 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 1544126645edff3bd336ddc4c090a5aabd694640 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 25 Nov 2025 02:02:58 +0000 Subject: [PATCH 191/194] 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 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 192/194] [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 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 193/194] [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 07d0f5f1bfd3b96eb2132105f75c82229648ef9b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 18 Nov 2025 02:02:36 +0000 Subject: [PATCH 194/194] 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)