Skip to content

Commit b94b1e6

Browse files
[release/10.0] Use CDN URL instead of blob in FindDotNetCliPackage (#16350)
Co-authored-by: Alexander Köplinger <[email protected]>
1 parent f1d31d0 commit b94b1e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.DotNet.Helix/Sdk/FindDotNetCliPackage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private async Task FindCliPackage()
109109
{
110110
NormalizeParameters();
111111
var feeds = new List<ITaskItem>();
112-
feeds.Add(new MSBuild.TaskItem("https://dotnetcli.blob.core.windows.net/dotnet"));
112+
feeds.Add(new MSBuild.TaskItem("https://builds.dotnet.microsoft.com/dotnet"));
113113
feeds.Add(new MSBuild.TaskItem("https://ci.dot.net/public"));
114114
if (AdditionalFeeds != null)
115115
{

0 commit comments

Comments
 (0)