From 2d82d2cc6338b6e720da3d7cd77df680c0bdbf5f Mon Sep 17 00:00:00 2001
From: Tanay Parikh <TanayParikh@users.noreply.github.com>
Date: Thu, 16 Dec 2021 15:11:57 -0800
Subject: [PATCH] Backport Use CDN for .NET Assets to release 6.0 (#39043)

* Backport Use CDN for .NET Assets to release 6.0

https://github.com/dotnet/aspnetcore/pull/39007

* Use dotnetcli.azureedge
---
 eng/Versions.props | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eng/Versions.props b/eng/Versions.props
index e29bd9d21d9..9cbc1e865f6 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -271,7 +271,7 @@
   <!-- Restore feeds -->
   <PropertyGroup Label="Restore feeds">
     <!-- In an orchestrated build, this may be overridden to other Azure feeds. -->
-    <DotNetAssetRootUrl Condition="'$(DotNetAssetRootUrl)'==''">https://dotnetcli.blob.core.windows.net/dotnet/</DotNetAssetRootUrl>
+    <DotNetAssetRootUrl Condition="'$(DotNetAssetRootUrl)'==''">https://dotnetcli.azureedge.net/dotnet/</DotNetAssetRootUrl>
     <DotNetPrivateAssetRootUrl Condition="'$(DotNetPrivateAssetRootUrl)'==''">https://dotnetclimsrc.blob.core.windows.net/dotnet/</DotNetPrivateAssetRootUrl>
   </PropertyGroup>
 </Project>
-- 
GitLab