From 8303ba0562bd9dd0a34f9bd01fb3bb3d7c39ad68 Mon Sep 17 00:00:00 2001 From: Logan Bussell Date: Tue, 9 Jun 2026 07:03:06 -0700 Subject: [PATCH] Switch Aspire source build repo from dotnet to aspire org --- eng/pipelines/pipelines/update-dependencies.yml | 4 ++-- eng/update-dependencies/BuildExtensions.cs | 1 - eng/update-dependencies/DockerfileShaUpdater.cs | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/eng/pipelines/pipelines/update-dependencies.yml b/eng/pipelines/pipelines/update-dependencies.yml index 7bf3437e9d..18bc338b18 100644 --- a/eng/pipelines/pipelines/update-dependencies.yml +++ b/eng/pipelines/pipelines/update-dependencies.yml @@ -73,8 +73,8 @@ extends: dotnet run --project eng/update-dependencies/update-dependencies.csproj -- from-channel ${{ parameters.aspireChannel }} - https://github.com/dotnet/aspire - --version-source-name 'dotnet/aspire' + https://github.com/microsoft/aspire + --version-source-name 'microsoft/aspire' ${{ parameters.gitHubAuthArgs }} - ${{ each tool in parameters.tools }}: diff --git a/eng/update-dependencies/BuildExtensions.cs b/eng/update-dependencies/BuildExtensions.cs index 729d19a75f..ee9315d9e8 100644 --- a/eng/update-dependencies/BuildExtensions.cs +++ b/eng/update-dependencies/BuildExtensions.cs @@ -20,7 +20,6 @@ public static BuildRepo GetBuildRepo(this Build build) return repo switch { "https://github.com/dotnet/dotnet" or "https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet" => BuildRepo.Vmr, - "https://github.com/dotnet/aspire" or "https://dev.azure.com/dnceng/internal/_git/dotnet-aspire" => BuildRepo.Aspire, "https://github.com/microsoft/aspire" or "https://dev.azure.com/dnceng/internal/_git/microsoft-aspire" => BuildRepo.Aspire, _ => throw new InvalidOperationException($"Build {build.Id} was from unsupported repository '{repo}'"), }; diff --git a/eng/update-dependencies/DockerfileShaUpdater.cs b/eng/update-dependencies/DockerfileShaUpdater.cs index abb628e340..89ce59673a 100644 --- a/eng/update-dependencies/DockerfileShaUpdater.cs +++ b/eng/update-dependencies/DockerfileShaUpdater.cs @@ -138,7 +138,7 @@ public static IEnumerable CreateUpdaters( usedBuildInfos = [dependencyBuildInfos.First(info => info.SimpleName == _productName)]; string baseUrl = ManifestHelper.GetBaseUrls(_manifestVariables.Variables, _options).First(); - // Remove Aspire Dashboard case once https://github.com/dotnet/aspire/issues/2035 is fixed. + // Remove Aspire Dashboard case once https://github.com/microsoft/aspire/issues/2035 is fixed. string archiveExt = _os.Contains("win") || _productName.Contains("aspire-dashboard") ? "zip" : "tar.gz"; string versionDir = _buildVersion ?? ""; string versionFile = VersionHelper.ResolveProductVersion(versionDir, _options.StableBranding);