From ced00189ea209bfba8f5c39735767495c47642f6 Mon Sep 17 00:00:00 2001 From: Rainer Sigwald Date: Fri, 13 Mar 2026 14:17:34 -0500 Subject: [PATCH 01/10] Quote arguments to [MSBuild]::MakeRelative Fix #53385 by quoting file-path arguments so any commas within the paths do not leak into MSBuild's understanding of the arguments to the property function. --- .../targets/Microsoft.NET.Publish.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Publish.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Publish.targets index eef7ac8c0b80..07ea328b4bb0 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Publish.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Publish.targets @@ -848,7 +848,7 @@ Copyright (c) .NET Foundation. All rights reserved. %(Content.TargetPath) %(Content.Link) - $([MSBuild]::MakeRelative($(MSBuildProjectDirectory), %(Content.FullPath))) + $([MSBuild]::MakeRelative('$(MSBuildProjectDirectory)', '%(Content.FullPath)')) From b476fccbc1f45e13196073341678f9ee295fad05 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Tue, 17 Mar 2026 13:53:56 -0700 Subject: [PATCH 02/10] Add test for publishing content with commas in filename This test verifies that Content items with commas in their filenames can be published without triggering MSB4186 due to the comma being interpreted as an argument separator. --- ...GivenThatWeWantToPublishWithIfDifferent.cs | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs index d234ec586284..308844aad8c5 100644 --- a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs +++ b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs @@ -455,5 +455,49 @@ public void It_publishes_content_from_imported_targets_with_correct_path() .Where(f => !f.StartsWith(publishDirectory.FullName)); potentialEscapedFiles.Should().BeEmpty("Content file should not escape to directories outside publish folder"); } + + [Fact] + public void It_publishes_content_with_comma_in_filename() + { + // This test verifies that Content items with commas in their filenames can be published + // without triggering MSB4186 due to the comma being interpreted as an argument separator + // in the [MSBuild]::MakeRelative property function call. + + var testProject = new TestProject() + { + Name = "PublishCommaContent", + TargetFrameworks = ToolsetInfo.CurrentTargetFramework, + IsExe = true + }; + + testProject.SourceFiles["Program.cs"] = "class Program { static void Main() { } }"; + + var testAsset = TestAssetsManager.CreateTestProject(testProject); + + var projectDirectory = Path.Combine(testAsset.Path, testProject.Name); + + // Create a content file with a comma in the filename (e.g., a variable font file) + var contentFileName = "Doto-VariableFont_ROND,wght.ttf"; + var contentFile = Path.Combine(projectDirectory, contentFileName); + File.WriteAllText(contentFile, "fake font content"); + + // Update the project file to include the content file with CopyToPublishDirectory + var projectFile = Path.Combine(projectDirectory, $"{testProject.Name}.csproj"); + var projectContent = File.ReadAllText(projectFile); + projectContent = projectContent.Replace("", @" + + Expand commentComment on line R489Resolved + +"); + File.WriteAllText(projectFile, projectContent); + + var publishCommand = new PublishCommand(testAsset); + var publishResult = publishCommand.Execute(); + + publishResult.Should().Pass(); + + var publishDirectory = publishCommand.GetOutputDirectory(testProject.TargetFrameworks); + publishDirectory.Should().HaveFile(contentFileName); + } } } From 19078f11cca4e1c7d961e0827ec17a5c0f63b25f Mon Sep 17 00:00:00 2001 From: Chet Husk Date: Wed, 18 Mar 2026 11:17:54 -0500 Subject: [PATCH 03/10] Fix assets manager usage --- .../GivenThatWeWantToPublishWithIfDifferent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs index 308844aad8c5..1558c425da4a 100644 --- a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs +++ b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs @@ -472,7 +472,7 @@ public void It_publishes_content_with_comma_in_filename() testProject.SourceFiles["Program.cs"] = "class Program { static void Main() { } }"; - var testAsset = TestAssetsManager.CreateTestProject(testProject); + var testAsset = _testAssetsManager.CreateTestProject(testProject); var projectDirectory = Path.Combine(testAsset.Path, testProject.Name); From 8e08d24b0ef87b3f169916b60a550ef30625aea0 Mon Sep 17 00:00:00 2001 From: Chet Husk Date: Wed, 18 Mar 2026 13:53:42 -0500 Subject: [PATCH 04/10] fix errant raw string in xml code --- .../GivenThatWeWantToPublishWithIfDifferent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs index 1558c425da4a..5b7add2b7e3b 100644 --- a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs +++ b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs @@ -486,7 +486,7 @@ public void It_publishes_content_with_comma_in_filename() var projectContent = File.ReadAllText(projectFile); projectContent = projectContent.Replace("", @" - Expand commentComment on line R489Resolved + "); File.WriteAllText(projectFile, projectContent); From 5a401fc9a81a0cd5250faac59e276bdc11bbb285 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 23 Mar 2026 03:59:47 +0000 Subject: [PATCH 05/10] Update dependencies from build 307266 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.HostModel, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.Platforms, Microsoft.WindowsDesktop.App.Internal (Version 10.0.6-servicing.26170.102 -> 10.0.6-servicing.26171.105) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.6 -> 10.0.6) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.26170.102 -> 10.0.0-preview.26171.105) Microsoft.Build (Version 18.0.11 -> 18.0.11) Microsoft.Build.Localization (Version 18.0.11-servicing-26170-102 -> 18.0.11-servicing-26171-105) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.2-rc.17102 -> 7.0.2-rc.17205) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.106 -> 10.0.106) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.26170.102 -> 5.0.0-2.26171.105) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.26170.102 -> 2.0.0-preview.1.26171.105) Microsoft.DiaSymReader (Version 2.2.6 -> 2.2.6) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.26170.102 -> 10.0.0-beta.26171.105) Microsoft.FSharp.Compiler (Version 14.0.106-servicing.26170.102 -> 14.0.106-servicing.26171.105) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.2-release-26170-102 -> 18.0.2-release-26171-105) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.106-servicing.26170.102 -> 10.0.106-servicing.26171.105) Microsoft.Web.Xdt (Version 3.2.6 -> 3.2.6) System.CommandLine (Version 2.0.6 -> 2.0.6) [[ commit created by automation ]] --- NuGet.config | 2 +- eng/Version.Details.props | 126 ++++++------ eng/Version.Details.xml | 392 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 262 insertions(+), 262 deletions(-) diff --git a/NuGet.config b/NuGet.config index 67f6bbfd947d..0aaa6a0edb4d 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index caef7dcdb9e2..5d0451894a8e 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,12 +8,12 @@ This file should be imported by eng/Versions.props 2.1.0 - 10.0.6-servicing.26170.102 - 10.0.6-servicing.26170.102 - 10.0.6-servicing.26170.102 - 10.0.6-servicing.26170.102 + 10.0.6-servicing.26171.105 + 10.0.6-servicing.26171.105 + 10.0.6-servicing.26171.105 + 10.0.6-servicing.26171.105 10.0.6 - 10.0.6-servicing.26170.102 + 10.0.6-servicing.26171.105 10.0.6 10.0.6 10.0.6 @@ -21,46 +21,46 @@ This file should be imported by eng/Versions.props 10.0.6 10.0.6 10.0.6 - 10.0.6-servicing.26170.102 + 10.0.6-servicing.26171.105 10.0.6 10.0.6 10.0.6 10.0.6 - 10.0.6-servicing.26170.102 + 10.0.6-servicing.26171.105 10.0.6 - 10.0.6-servicing.26170.102 - 10.0.6-servicing.26170.102 - 10.0.0-preview.26170.102 + 10.0.6-servicing.26171.105 + 10.0.6-servicing.26171.105 + 10.0.0-preview.26171.105 10.0.6 10.0.6 18.0.11 - 18.0.11-servicing-26170-102 - 7.0.2-rc.17102 + 18.0.11-servicing-26171-105 + 7.0.2-rc.17205 10.0.106 - 5.0.0-2.26170.102 - 5.0.0-2.26170.102 - 5.0.0-2.26170.102 - 5.0.0-2.26170.102 - 5.0.0-2.26170.102 - 5.0.0-2.26170.102 - 5.0.0-2.26170.102 - 10.0.0-preview.26170.102 - 5.0.0-2.26170.102 - 5.0.0-2.26170.102 - 2.0.0-preview.1.26170.102 + 5.0.0-2.26171.105 + 5.0.0-2.26171.105 + 5.0.0-2.26171.105 + 5.0.0-2.26171.105 + 5.0.0-2.26171.105 + 5.0.0-2.26171.105 + 5.0.0-2.26171.105 + 10.0.0-preview.26171.105 + 5.0.0-2.26171.105 + 5.0.0-2.26171.105 + 2.0.0-preview.1.26171.105 2.2.6 - 10.0.0-beta.26170.102 - 10.0.0-beta.26170.102 - 10.0.0-beta.26170.102 - 10.0.0-beta.26170.102 - 10.0.0-beta.26170.102 - 10.0.0-beta.26170.102 + 10.0.0-beta.26171.105 + 10.0.0-beta.26171.105 + 10.0.0-beta.26171.105 + 10.0.0-beta.26171.105 + 10.0.0-beta.26171.105 + 10.0.0-beta.26171.105 10.0.6 10.0.6 - 10.0.6-servicing.26170.102 - 10.0.6-servicing.26170.102 - 10.0.0-beta.26170.102 - 10.0.0-beta.26170.102 + 10.0.6-servicing.26171.105 + 10.0.6-servicing.26171.105 + 10.0.0-beta.26171.105 + 10.0.0-beta.26171.105 10.0.6 10.0.6 10.0.6 @@ -70,19 +70,19 @@ This file should be imported by eng/Versions.props 10.0.6 10.0.6 10.0.6 - 14.0.106-servicing.26170.102 + 14.0.106-servicing.26171.105 10.0.6 - 5.0.0-2.26170.102 - 5.0.0-2.26170.102 - 10.0.6-servicing.26170.102 + 5.0.0-2.26171.105 + 5.0.0-2.26171.105 + 10.0.6-servicing.26171.105 10.0.6 10.0.6 10.0.0-preview.7.25377.103 - 10.0.0-preview.26170.102 - 10.0.6-servicing.26170.102 - 18.0.2-release-26170-102 + 10.0.0-preview.26171.105 + 10.0.6-servicing.26171.105 + 18.0.2-release-26171-105 10.0.6 - 10.0.6-servicing.26170.102 + 10.0.6-servicing.26171.105 10.0.106 10.0.106 10.0.106 @@ -91,34 +91,34 @@ This file should be imported by eng/Versions.props 10.0.106 10.0.106 10.0.106 - 10.0.106-servicing.26170.102 + 10.0.106-servicing.26171.105 10.0.106 - 10.0.106-servicing.26170.102 + 10.0.106-servicing.26171.105 10.0.106 10.0.106 - 10.0.106-servicing.26170.102 - 18.0.2-release-26170-102 - 18.0.2-release-26170-102 + 10.0.106-servicing.26171.105 + 18.0.2-release-26171-105 + 18.0.2-release-26171-105 3.2.6 10.0.6 - 10.0.6-servicing.26170.102 + 10.0.6-servicing.26171.105 10.0.6 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 - 7.0.2-rc.17102 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 + 7.0.2-rc.17205 10.0.6 2.0.6 10.0.6 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5e4be31ea477..9e29bd9b6a42 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f - + https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - df857aec34b5feea2cfd528e7a44575aa9f75330 + 6041df6c13c4654878425f69649f6099d0b8d15f diff --git a/global.json b/global.json index ed0007f2d138..e1ef6d38830f 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26170.102", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26170.102", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26171.105", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26171.105", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 5f61638b3b44740deb85a84692945faa8bacf27d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 23 Mar 2026 04:08:43 +0000 Subject: [PATCH 06/10] Update dependencies from build 307268 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.HostModel, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.Platforms, Microsoft.WindowsDesktop.App.Internal (Version 10.0.6-servicing.26171.105 -> 10.0.6-servicing.26172.102) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.6 -> 10.0.6) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.26171.105 -> 10.0.0-preview.26172.102) Microsoft.Build (Version 18.0.11 -> 18.0.11) Microsoft.Build.Localization (Version 18.0.11-servicing-26171-105 -> 18.0.11-servicing-26172-102) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.2-rc.17205 -> 7.0.2-rc.17302) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.106 -> 10.0.106) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.26171.105 -> 5.0.0-2.26172.102) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.26171.105 -> 2.0.0-preview.1.26172.102) Microsoft.DiaSymReader (Version 2.2.6 -> 2.2.6) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.26171.105 -> 10.0.0-beta.26172.102) Microsoft.FSharp.Compiler (Version 14.0.106-servicing.26171.105 -> 14.0.106-servicing.26172.102) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.2-release-26171-105 -> 18.0.2-release-26172-102) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.106-servicing.26171.105 -> 10.0.106-servicing.26172.102) Microsoft.Web.Xdt (Version 3.2.6 -> 3.2.6) System.CommandLine (Version 2.0.6 -> 2.0.6) [[ commit created by automation ]] --- NuGet.config | 2 +- eng/Version.Details.props | 126 ++++++------ eng/Version.Details.xml | 392 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 262 insertions(+), 262 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0aaa6a0edb4d..58b3a032bd8b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 5d0451894a8e..638639b3f161 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,12 +8,12 @@ This file should be imported by eng/Versions.props 2.1.0 - 10.0.6-servicing.26171.105 - 10.0.6-servicing.26171.105 - 10.0.6-servicing.26171.105 - 10.0.6-servicing.26171.105 + 10.0.6-servicing.26172.102 + 10.0.6-servicing.26172.102 + 10.0.6-servicing.26172.102 + 10.0.6-servicing.26172.102 10.0.6 - 10.0.6-servicing.26171.105 + 10.0.6-servicing.26172.102 10.0.6 10.0.6 10.0.6 @@ -21,46 +21,46 @@ This file should be imported by eng/Versions.props 10.0.6 10.0.6 10.0.6 - 10.0.6-servicing.26171.105 + 10.0.6-servicing.26172.102 10.0.6 10.0.6 10.0.6 10.0.6 - 10.0.6-servicing.26171.105 + 10.0.6-servicing.26172.102 10.0.6 - 10.0.6-servicing.26171.105 - 10.0.6-servicing.26171.105 - 10.0.0-preview.26171.105 + 10.0.6-servicing.26172.102 + 10.0.6-servicing.26172.102 + 10.0.0-preview.26172.102 10.0.6 10.0.6 18.0.11 - 18.0.11-servicing-26171-105 - 7.0.2-rc.17205 + 18.0.11-servicing-26172-102 + 7.0.2-rc.17302 10.0.106 - 5.0.0-2.26171.105 - 5.0.0-2.26171.105 - 5.0.0-2.26171.105 - 5.0.0-2.26171.105 - 5.0.0-2.26171.105 - 5.0.0-2.26171.105 - 5.0.0-2.26171.105 - 10.0.0-preview.26171.105 - 5.0.0-2.26171.105 - 5.0.0-2.26171.105 - 2.0.0-preview.1.26171.105 + 5.0.0-2.26172.102 + 5.0.0-2.26172.102 + 5.0.0-2.26172.102 + 5.0.0-2.26172.102 + 5.0.0-2.26172.102 + 5.0.0-2.26172.102 + 5.0.0-2.26172.102 + 10.0.0-preview.26172.102 + 5.0.0-2.26172.102 + 5.0.0-2.26172.102 + 2.0.0-preview.1.26172.102 2.2.6 - 10.0.0-beta.26171.105 - 10.0.0-beta.26171.105 - 10.0.0-beta.26171.105 - 10.0.0-beta.26171.105 - 10.0.0-beta.26171.105 - 10.0.0-beta.26171.105 + 10.0.0-beta.26172.102 + 10.0.0-beta.26172.102 + 10.0.0-beta.26172.102 + 10.0.0-beta.26172.102 + 10.0.0-beta.26172.102 + 10.0.0-beta.26172.102 10.0.6 10.0.6 - 10.0.6-servicing.26171.105 - 10.0.6-servicing.26171.105 - 10.0.0-beta.26171.105 - 10.0.0-beta.26171.105 + 10.0.6-servicing.26172.102 + 10.0.6-servicing.26172.102 + 10.0.0-beta.26172.102 + 10.0.0-beta.26172.102 10.0.6 10.0.6 10.0.6 @@ -70,19 +70,19 @@ This file should be imported by eng/Versions.props 10.0.6 10.0.6 10.0.6 - 14.0.106-servicing.26171.105 + 14.0.106-servicing.26172.102 10.0.6 - 5.0.0-2.26171.105 - 5.0.0-2.26171.105 - 10.0.6-servicing.26171.105 + 5.0.0-2.26172.102 + 5.0.0-2.26172.102 + 10.0.6-servicing.26172.102 10.0.6 10.0.6 10.0.0-preview.7.25377.103 - 10.0.0-preview.26171.105 - 10.0.6-servicing.26171.105 - 18.0.2-release-26171-105 + 10.0.0-preview.26172.102 + 10.0.6-servicing.26172.102 + 18.0.2-release-26172-102 10.0.6 - 10.0.6-servicing.26171.105 + 10.0.6-servicing.26172.102 10.0.106 10.0.106 10.0.106 @@ -91,34 +91,34 @@ This file should be imported by eng/Versions.props 10.0.106 10.0.106 10.0.106 - 10.0.106-servicing.26171.105 + 10.0.106-servicing.26172.102 10.0.106 - 10.0.106-servicing.26171.105 + 10.0.106-servicing.26172.102 10.0.106 10.0.106 - 10.0.106-servicing.26171.105 - 18.0.2-release-26171-105 - 18.0.2-release-26171-105 + 10.0.106-servicing.26172.102 + 18.0.2-release-26172-102 + 18.0.2-release-26172-102 3.2.6 10.0.6 - 10.0.6-servicing.26171.105 + 10.0.6-servicing.26172.102 10.0.6 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 - 7.0.2-rc.17205 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 + 7.0.2-rc.17302 10.0.6 2.0.6 10.0.6 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9e29bd9b6a42..328c746e07e5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 - + https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 6041df6c13c4654878425f69649f6099d0b8d15f + 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 diff --git a/global.json b/global.json index e1ef6d38830f..23310fdad516 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26171.105", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26171.105", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26172.102", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26172.102", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From a348c29832e4bb96c72ab779d5719f7757d2d067 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 24 Mar 2026 00:05:10 +0000 Subject: [PATCH 07/10] Update dependencies from build 307387 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.NET.HostModel, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.Platforms, Microsoft.WindowsDesktop.App.Internal (Version 10.0.6-servicing.26172.102 -> 10.0.6-servicing.26173.108) Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.10.0, Microsoft.DotNet.Web.ProjectTemplates.10.0, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NETCore.App.Ref, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 10.0.6 -> 10.0.6) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.26172.102 -> 10.0.0-preview.26173.108) Microsoft.Build (Version 18.0.11 -> 18.0.11) Microsoft.Build.Localization (Version 18.0.11-servicing-26172-102 -> 18.0.11-servicing-26173-108) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.0.2-rc.17302 -> 7.0.2-rc.17408) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common (Version 10.0.106 -> 10.0.106) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.0.0-2.26172.102 -> 5.0.0-2.26173.108) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.26172.102 -> 2.0.0-preview.1.26173.108) Microsoft.DiaSymReader (Version 2.2.6 -> 2.2.6) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 10.0.0-beta.26172.102 -> 10.0.0-beta.26173.108) Microsoft.FSharp.Compiler (Version 14.0.106-servicing.26172.102 -> 14.0.106-servicing.26173.108) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.0.2-release-26172-102 -> 18.0.2-release-26173-108) Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateSearch.TemplateDiscovery (Version 10.0.106-servicing.26172.102 -> 10.0.106-servicing.26173.108) Microsoft.Web.Xdt (Version 3.2.6 -> 3.2.6) System.CommandLine (Version 2.0.6 -> 2.0.6) [[ commit created by automation ]] --- NuGet.config | 2 +- eng/Version.Details.props | 126 ++++++------ eng/Version.Details.xml | 392 +++++++++++++++++++------------------- global.json | 4 +- 4 files changed, 262 insertions(+), 262 deletions(-) diff --git a/NuGet.config b/NuGet.config index 58b3a032bd8b..a5f6382afb7d 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 638639b3f161..573dce162c82 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,12 +8,12 @@ This file should be imported by eng/Versions.props 2.1.0 - 10.0.6-servicing.26172.102 - 10.0.6-servicing.26172.102 - 10.0.6-servicing.26172.102 - 10.0.6-servicing.26172.102 + 10.0.6-servicing.26173.108 + 10.0.6-servicing.26173.108 + 10.0.6-servicing.26173.108 + 10.0.6-servicing.26173.108 10.0.6 - 10.0.6-servicing.26172.102 + 10.0.6-servicing.26173.108 10.0.6 10.0.6 10.0.6 @@ -21,46 +21,46 @@ This file should be imported by eng/Versions.props 10.0.6 10.0.6 10.0.6 - 10.0.6-servicing.26172.102 + 10.0.6-servicing.26173.108 10.0.6 10.0.6 10.0.6 10.0.6 - 10.0.6-servicing.26172.102 + 10.0.6-servicing.26173.108 10.0.6 - 10.0.6-servicing.26172.102 - 10.0.6-servicing.26172.102 - 10.0.0-preview.26172.102 + 10.0.6-servicing.26173.108 + 10.0.6-servicing.26173.108 + 10.0.0-preview.26173.108 10.0.6 10.0.6 18.0.11 - 18.0.11-servicing-26172-102 - 7.0.2-rc.17302 + 18.0.11-servicing-26173-108 + 7.0.2-rc.17408 10.0.106 - 5.0.0-2.26172.102 - 5.0.0-2.26172.102 - 5.0.0-2.26172.102 - 5.0.0-2.26172.102 - 5.0.0-2.26172.102 - 5.0.0-2.26172.102 - 5.0.0-2.26172.102 - 10.0.0-preview.26172.102 - 5.0.0-2.26172.102 - 5.0.0-2.26172.102 - 2.0.0-preview.1.26172.102 + 5.0.0-2.26173.108 + 5.0.0-2.26173.108 + 5.0.0-2.26173.108 + 5.0.0-2.26173.108 + 5.0.0-2.26173.108 + 5.0.0-2.26173.108 + 5.0.0-2.26173.108 + 10.0.0-preview.26173.108 + 5.0.0-2.26173.108 + 5.0.0-2.26173.108 + 2.0.0-preview.1.26173.108 2.2.6 - 10.0.0-beta.26172.102 - 10.0.0-beta.26172.102 - 10.0.0-beta.26172.102 - 10.0.0-beta.26172.102 - 10.0.0-beta.26172.102 - 10.0.0-beta.26172.102 + 10.0.0-beta.26173.108 + 10.0.0-beta.26173.108 + 10.0.0-beta.26173.108 + 10.0.0-beta.26173.108 + 10.0.0-beta.26173.108 + 10.0.0-beta.26173.108 10.0.6 10.0.6 - 10.0.6-servicing.26172.102 - 10.0.6-servicing.26172.102 - 10.0.0-beta.26172.102 - 10.0.0-beta.26172.102 + 10.0.6-servicing.26173.108 + 10.0.6-servicing.26173.108 + 10.0.0-beta.26173.108 + 10.0.0-beta.26173.108 10.0.6 10.0.6 10.0.6 @@ -70,19 +70,19 @@ This file should be imported by eng/Versions.props 10.0.6 10.0.6 10.0.6 - 14.0.106-servicing.26172.102 + 14.0.106-servicing.26173.108 10.0.6 - 5.0.0-2.26172.102 - 5.0.0-2.26172.102 - 10.0.6-servicing.26172.102 + 5.0.0-2.26173.108 + 5.0.0-2.26173.108 + 10.0.6-servicing.26173.108 10.0.6 10.0.6 10.0.0-preview.7.25377.103 - 10.0.0-preview.26172.102 - 10.0.6-servicing.26172.102 - 18.0.2-release-26172-102 + 10.0.0-preview.26173.108 + 10.0.6-servicing.26173.108 + 18.0.2-release-26173-108 10.0.6 - 10.0.6-servicing.26172.102 + 10.0.6-servicing.26173.108 10.0.106 10.0.106 10.0.106 @@ -91,34 +91,34 @@ This file should be imported by eng/Versions.props 10.0.106 10.0.106 10.0.106 - 10.0.106-servicing.26172.102 + 10.0.106-servicing.26173.108 10.0.106 - 10.0.106-servicing.26172.102 + 10.0.106-servicing.26173.108 10.0.106 10.0.106 - 10.0.106-servicing.26172.102 - 18.0.2-release-26172-102 - 18.0.2-release-26172-102 + 10.0.106-servicing.26173.108 + 18.0.2-release-26173-108 + 18.0.2-release-26173-108 3.2.6 10.0.6 - 10.0.6-servicing.26172.102 + 10.0.6-servicing.26173.108 10.0.6 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 - 7.0.2-rc.17302 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 + 7.0.2-rc.17408 10.0.6 2.0.6 10.0.6 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 328c746e07e5..e912555e543a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 @@ -70,168 +70,168 @@ https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 - + https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 https://github.com/microsoft/testfx @@ -571,7 +571,7 @@ https://github.com/dotnet/dotnet - 8aa2738d3bdb38df89821c66dd8a41b9b73dc174 + ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 diff --git a/global.json b/global.json index 23310fdad516..4adbefa7b9f7 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26172.102", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26172.102", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26173.108", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26173.108", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 132fd0148c58cff51b8da30521f6c0edba19abd3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 04:29:08 +0000 Subject: [PATCH 08/10] Reset files to release/10.0.2xx Reset patterns: - global.json - NuGet.config - eng/Version.Details.xml - eng/Version.Details.props - eng/common/* --- NuGet.config | 4 +- eng/Version.Details.props | 266 +++++++-------- eng/Version.Details.xml | 673 +++++++++++++++++++------------------- global.json | 6 +- 4 files changed, 475 insertions(+), 474 deletions(-) diff --git a/NuGet.config b/NuGet.config index a5f6382afb7d..b4cefe38af01 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,7 @@ - + @@ -39,6 +39,8 @@ + + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 573dce162c82..7260c61cddad 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,139 +8,139 @@ This file should be imported by eng/Versions.props 2.1.0 - 10.0.6-servicing.26173.108 - 10.0.6-servicing.26173.108 - 10.0.6-servicing.26173.108 - 10.0.6-servicing.26173.108 - 10.0.6 - 10.0.6-servicing.26173.108 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6-servicing.26173.108 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6-servicing.26173.108 - 10.0.6 - 10.0.6-servicing.26173.108 - 10.0.6-servicing.26173.108 - 10.0.0-preview.26173.108 - 10.0.6 - 10.0.6 - 18.0.11 - 18.0.11-servicing-26173-108 - 7.0.2-rc.17408 - 10.0.106 - 5.0.0-2.26173.108 - 5.0.0-2.26173.108 - 5.0.0-2.26173.108 - 5.0.0-2.26173.108 - 5.0.0-2.26173.108 - 5.0.0-2.26173.108 - 5.0.0-2.26173.108 - 10.0.0-preview.26173.108 - 5.0.0-2.26173.108 - 5.0.0-2.26173.108 - 2.0.0-preview.1.26173.108 - 2.2.6 - 10.0.0-beta.26173.108 - 10.0.0-beta.26173.108 - 10.0.0-beta.26173.108 - 10.0.0-beta.26173.108 - 10.0.0-beta.26173.108 - 10.0.0-beta.26173.108 - 10.0.6 - 10.0.6 - 10.0.6-servicing.26173.108 - 10.0.6-servicing.26173.108 - 10.0.0-beta.26173.108 - 10.0.0-beta.26173.108 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 14.0.106-servicing.26173.108 - 10.0.6 - 5.0.0-2.26173.108 - 5.0.0-2.26173.108 - 10.0.6-servicing.26173.108 - 10.0.6 - 10.0.6 + 10.0.4-servicing.26119.110 + 10.0.4-servicing.26119.110 + 10.0.4-servicing.26119.110 + 10.0.4-servicing.26119.110 + 10.0.4 + 10.0.4-servicing.26119.110 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4-servicing.26119.110 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4-servicing.26119.110 + 10.0.4 + 10.0.4-servicing.26119.110 + 10.0.4-servicing.26119.110 + 10.0.0-preview.26165.110 + 10.0.4 + 10.0.4 + 18.3.3 + 18.3.3-servicing-26165-110 + 7.3.0-rc.16610 + 10.0.202 + 5.3.0-2.26165.110 + 5.3.0-2.26165.110 + 5.3.0-2.26165.110 + 5.3.0-2.26165.110 + 5.3.0-2.26165.110 + 5.3.0-2.26165.110 + 5.3.0-2.26165.110 + 5.3.0-2.26165.110 + 10.0.0-preview.26165.110 + 5.3.0-2.26165.110 + 5.3.0-2.26165.110 + 2.0.0-preview.1.26119.110 + 2.2.4 + 10.0.0-beta.26165.110 + 10.0.0-beta.26165.110 + 10.0.0-beta.26165.110 + 10.0.0-beta.26165.110 + 10.0.0-beta.26165.110 + 10.0.0-beta.26165.110 + 10.0.4 + 10.0.4 + 10.0.4-servicing.26119.110 + 10.0.0-beta.26165.110 + 10.0.0-beta.26165.110 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 15.2.202-servicing.26165.110 + 10.0.4 + 5.3.0-2.26165.110 + 5.3.0-2.26165.110 + 10.0.4-servicing.26119.110 + 10.0.4 + 10.0.4 10.0.0-preview.7.25377.103 - 10.0.0-preview.26173.108 - 10.0.6-servicing.26173.108 - 18.0.2-release-26173-108 - 10.0.6 - 10.0.6-servicing.26173.108 - 10.0.106 - 10.0.106 - 10.0.106 - 10.0.106 - 10.0.106 - 10.0.106 - 10.0.106 - 10.0.106 - 10.0.106-servicing.26173.108 - 10.0.106 - 10.0.106-servicing.26173.108 - 10.0.106 - 10.0.106 - 10.0.106-servicing.26173.108 - 18.0.2-release-26173-108 - 18.0.2-release-26173-108 - 3.2.6 - 10.0.6 - 10.0.6-servicing.26173.108 - 10.0.6 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 7.0.2-rc.17408 - 10.0.6 - 2.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 - 10.0.6 + 10.0.0-preview.26165.110 + 10.0.4-servicing.26119.110 + 18.3.0-release-26165-110 + 10.0.4 + 10.0.4-servicing.26119.110 + 10.0.202 + 10.0.202 + 10.0.202 + 10.0.202 + 10.0.202 + 10.0.202 + 10.0.202 + 10.0.202 + 10.0.202-servicing.26165.110 + 10.0.202 + 10.0.202-servicing.26165.110 + 10.0.202 + 10.0.202 + 10.0.202-servicing.26165.110 + 18.3.0-release-26165-110 + 18.3.0-release-26165-110 + 3.2.4 + 10.0.4 + 10.0.4-servicing.26119.110 + 10.0.4 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 7.3.0-rc.16610 + 10.0.4 + 2.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 + 10.0.4 2.2.0-preview.26163.4 4.2.0-preview.26163.4 @@ -185,6 +185,7 @@ This file should be imported by eng/Versions.props $(MicrosoftCodeAnalysisCSharpCodeStylePackageVersion) $(MicrosoftCodeAnalysisCSharpFeaturesPackageVersion) $(MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion) + $(MicrosoftCodeAnalysisExternalAccessHotReloadPackageVersion) $(MicrosoftCodeAnalysisPublicApiAnalyzersPackageVersion) $(MicrosoftCodeAnalysisRazorToolingInternalPackageVersion) $(MicrosoftCodeAnalysisWorkspacesCommonPackageVersion) @@ -200,7 +201,6 @@ This file should be imported by eng/Versions.props $(MicrosoftDotNetWebItemTemplates100PackageVersion) $(MicrosoftDotNetWebProjectTemplates100PackageVersion) $(MicrosoftDotnetWinFormsProjectTemplatesPackageVersion) - $(MicrosoftDotNetWpfProjectTemplatesPackageVersion) $(MicrosoftDotNetXliffTasksPackageVersion) $(MicrosoftDotNetXUnitExtensionsPackageVersion) $(MicrosoftExtensionsConfigurationIniPackageVersion) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e912555e543a..654ec7be6ff9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 @@ -68,170 +68,170 @@ https://github.com/dotnet/dotnet 6a953e76162f3f079405f80e28664fa51b136740 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - + https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 https://github.com/microsoft/testfx @@ -569,9 +568,9 @@ https://github.com/microsoft/testfx 85dfe511d8e4111cea9f0e1a308dc66d7973469b - - https://github.com/dotnet/dotnet - ad5e0a16d8b6727cd10ed60efd8e13edd82e24f7 + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 diff --git a/global.json b/global.json index 4adbefa7b9f7..74c305d2ffdd 100644 --- a/global.json +++ b/global.json @@ -7,7 +7,7 @@ "errorMessage": "The .NET SDK is not installed or is not configured correctly. Please run ./build to install the correct SDK version locally." }, "tools": { - "dotnet": "10.0.105", + "dotnet": "10.0.200", "runtimes": { "dotnet": [ "$(MicrosoftNETCorePlatformsPackageVersion)" @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26173.108", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26173.108", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26165.110", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26165.110", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 9f83bb402c3d3d22b41e25972a5d06cfdb5eee1b Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Tue, 24 Mar 2026 09:09:55 -0700 Subject: [PATCH 09/10] Fix typo in test project --- .../GivenThatWeWantToPublishWithIfDifferent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs index 5b7add2b7e3b..6029fe2024db 100644 --- a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs +++ b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithIfDifferent.cs @@ -486,7 +486,7 @@ public void It_publishes_content_with_comma_in_filename() var projectContent = File.ReadAllText(projectFile); projectContent = projectContent.Replace("", @" - + "); File.WriteAllText(projectFile, projectContent); From 7ee574bfdd7cca76000775b4099c49f5d74bbf8a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 23:22:14 +0000 Subject: [PATCH 10/10] Reset files to release/10.0.3xx Reset patterns: - global.json - NuGet.config - eng/Version.Details.xml - eng/Version.Details.props - eng/common/* --- NuGet.config | 1 - eng/Version.Details.props | 274 ++++++++++--------- eng/Version.Details.xml | 551 +++++++++++++++++++------------------- global.json | 6 +- 4 files changed, 425 insertions(+), 407 deletions(-) diff --git a/NuGet.config b/NuGet.config index b4cefe38af01..f3f728c95515 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,6 @@ - diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 7260c61cddad..fe5af9650d2b 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,142 +8,145 @@ This file should be imported by eng/Versions.props 2.1.0 - 10.0.4-servicing.26119.110 - 10.0.4-servicing.26119.110 - 10.0.4-servicing.26119.110 - 10.0.4-servicing.26119.110 - 10.0.4 - 10.0.4-servicing.26119.110 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4-servicing.26119.110 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4-servicing.26119.110 - 10.0.4 - 10.0.4-servicing.26119.110 - 10.0.4-servicing.26119.110 - 10.0.0-preview.26165.110 - 10.0.4 - 10.0.4 - 18.3.3 - 18.3.3-servicing-26165-110 - 7.3.0-rc.16610 - 10.0.202 - 5.3.0-2.26165.110 - 5.3.0-2.26165.110 - 5.3.0-2.26165.110 - 5.3.0-2.26165.110 - 5.3.0-2.26165.110 - 5.3.0-2.26165.110 - 5.3.0-2.26165.110 - 5.3.0-2.26165.110 - 10.0.0-preview.26165.110 - 5.3.0-2.26165.110 - 5.3.0-2.26165.110 - 2.0.0-preview.1.26119.110 - 2.2.4 - 10.0.0-beta.26165.110 - 10.0.0-beta.26165.110 - 10.0.0-beta.26165.110 - 10.0.0-beta.26165.110 - 10.0.0-beta.26165.110 - 10.0.0-beta.26165.110 - 10.0.4 - 10.0.4 - 10.0.4-servicing.26119.110 - 10.0.0-beta.26165.110 - 10.0.0-beta.26165.110 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 15.2.202-servicing.26165.110 - 10.0.4 - 5.3.0-2.26165.110 - 5.3.0-2.26165.110 - 10.0.4-servicing.26119.110 - 10.0.4 - 10.0.4 + 10.0.5-servicing.26153.111 + 10.0.5-servicing.26153.111 + 10.0.5-servicing.26153.111 + 10.0.5-servicing.26153.111 + 10.0.5 + 10.0.5-servicing.26153.111 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5-servicing.26153.111 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5-servicing.26153.111 + 10.0.5 + 10.0.5-servicing.26153.111 + 10.0.5-servicing.26153.111 + 10.0.0-preview.26174.106 + 10.0.5 + 10.0.5 + 18.6.0-preview-26174-106 + 18.6.0-preview-26174-106 + 7.6.0-rc.17506 + 10.0.300-alpha.26174.106 + 5.6.0-2.26174.106 + 5.6.0-2.26174.106 + 5.6.0-2.26174.106 + 5.6.0-2.26174.106 + 5.6.0-2.26174.106 + 5.6.0-2.26174.106 + 5.6.0-2.26174.106 + 5.6.0-2.26174.106 + 10.0.0-preview.26174.106 + 5.6.0-2.26174.106 + 5.6.0-2.26174.106 + 5.6.0-2.26174.106 + 2.0.0-preview.1.26153.111 + 2.2.5 + 10.0.0-beta.26174.106 + 10.0.0-beta.26174.106 + 10.0.0-beta.26174.106 + 10.0.0-beta.26174.106 + 10.0.0-beta.26174.106 + 10.0.0-beta.26174.106 + 10.0.5 + 10.0.5 + 10.0.5-servicing.26153.111 + 10.0.5-servicing.26153.111 + 10.0.0-beta.26174.106 + 10.0.0-beta.26174.106 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 15.2.300-servicing.26174.106 + 10.0.5 + 5.6.0-2.26174.106 + 5.6.0-2.26174.106 + 10.0.5-servicing.26153.111 + 10.0.5 + 10.0.5 10.0.0-preview.7.25377.103 - 10.0.0-preview.26165.110 - 10.0.4-servicing.26119.110 - 18.3.0-release-26165-110 - 10.0.4 - 10.0.4-servicing.26119.110 - 10.0.202 - 10.0.202 - 10.0.202 - 10.0.202 - 10.0.202 - 10.0.202 - 10.0.202 - 10.0.202 - 10.0.202-servicing.26165.110 - 10.0.202 - 10.0.202-servicing.26165.110 - 10.0.202 - 10.0.202 - 10.0.202-servicing.26165.110 - 18.3.0-release-26165-110 - 18.3.0-release-26165-110 - 3.2.4 - 10.0.4 - 10.0.4-servicing.26119.110 - 10.0.4 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 7.3.0-rc.16610 - 10.0.4 - 2.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 - 10.0.4 + 10.0.0-preview.26174.106 + 10.0.5-servicing.26153.111 + 18.3.0-release-26174-106 + 10.0.5 + 10.0.5-servicing.26153.111 + 10.0.300-alpha.26174.106 + 10.0.300-alpha.26174.106 + 10.0.300-alpha.26174.106 + 10.0.300-alpha.26174.106 + 10.0.300-alpha.26174.106 + 10.0.300-preview.26174.106 + 10.0.300-preview.26174.106 + 10.0.300-preview.26174.106 + 10.0.300-preview.26174.106 + 10.0.300-preview.26174.106 + 10.0.300-preview.26174.106 + 10.0.300-preview.26174.106 + 10.0.300-preview.26174.106 + 10.0.300-preview.26174.106 + 18.3.0-release-26174-106 + 18.3.0-release-26174-106 + 3.2.5 + 10.0.5 + 10.0.5-servicing.26153.111 + 10.0.5 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 7.6.0-rc.17506 + 10.0.5 + 2.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 + 10.0.5 - 2.2.0-preview.26163.4 - 4.2.0-preview.26163.4 + 2.1.0-preview.25571.1 + 4.1.0-preview.25571.1 @@ -190,6 +193,7 @@ This file should be imported by eng/Versions.props $(MicrosoftCodeAnalysisRazorToolingInternalPackageVersion) $(MicrosoftCodeAnalysisWorkspacesCommonPackageVersion) $(MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion) + $(MicrosoftCodeAnalysisWorkspacesMSBuildBuildHostPackageVersion) $(MicrosoftDeploymentDotNetReleasesPackageVersion) $(MicrosoftDiaSymReaderPackageVersion) $(MicrosoftDotNetArcadeSdkPackageVersion) @@ -201,9 +205,11 @@ This file should be imported by eng/Versions.props $(MicrosoftDotNetWebItemTemplates100PackageVersion) $(MicrosoftDotNetWebProjectTemplates100PackageVersion) $(MicrosoftDotnetWinFormsProjectTemplatesPackageVersion) + $(MicrosoftDotNetWpfProjectTemplatesPackageVersion) $(MicrosoftDotNetXliffTasksPackageVersion) $(MicrosoftDotNetXUnitExtensionsPackageVersion) $(MicrosoftExtensionsConfigurationIniPackageVersion) + $(MicrosoftExtensionsDependencyInjectionAbstractionsPackageVersion) $(MicrosoftExtensionsDependencyModelPackageVersion) $(MicrosoftExtensionsFileProvidersAbstractionsPackageVersion) $(MicrosoftExtensionsFileProvidersEmbeddedPackageVersion) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 654ec7be6ff9..d498242e1c11 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 @@ -68,170 +68,174 @@ https://github.com/dotnet/dotnet 6a953e76162f3f079405f80e28664fa51b136740 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 + + + https://github.com/dotnet/dotnet + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + a612c2a1056fe3265387ae3ff7c94eba1505caf9 + + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 + + + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://github.com/dotnet/dotnet - 371b9b5d0aefef66a1db9caba3a697ca58a04eb7 + 913bfeebf747b38cf6ea89a64787ce7245969915 - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 - + https://github.com/microsoft/testfx - 85dfe511d8e4111cea9f0e1a308dc66d7973469b + 43e592148ac1c7916908477bdffcf2a345affa6d - + https://github.com/microsoft/testfx - 85dfe511d8e4111cea9f0e1a308dc66d7973469b + 43e592148ac1c7916908477bdffcf2a345affa6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 80d3e14f5e08b4888f464e3cd0d0b2445b63ec46 + a612c2a1056fe3265387ae3ff7c94eba1505caf9 diff --git a/global.json b/global.json index 74c305d2ffdd..71156b28e23d 100644 --- a/global.json +++ b/global.json @@ -7,7 +7,7 @@ "errorMessage": "The .NET SDK is not installed or is not configured correctly. Please run ./build to install the correct SDK version locally." }, "tools": { - "dotnet": "10.0.200", + "dotnet": "10.0.105", "runtimes": { "dotnet": [ "$(MicrosoftNETCorePlatformsPackageVersion)" @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26165.110", - "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26165.110", + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26174.106", + "Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.26174.106", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440"