Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eng/pipelines/pipelines/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}:
Expand Down
1 change: 0 additions & 1 deletion eng/update-dependencies/BuildExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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}'"),
};
Expand Down
2 changes: 1 addition & 1 deletion eng/update-dependencies/DockerfileShaUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public static IEnumerable<IDependencyUpdater> 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);
Expand Down
Loading