Skip to content

Commit

Permalink
Update runtime download paths to directly point to the blob store (#5…
Browse files Browse the repository at this point in the history
…9624)

Our CDN is changing, so update the URLs. Instead of pointing to the CDN, point to the underlying store like dotnet/sdk does.
  • Loading branch information
jkoritzinsky authored Dec 26, 2024
1 parent f58b640 commit 18e00de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,10 @@
</PropertyGroup>

<PropertyGroup>
<OfficialBaseURL>https://dotnetcli.azureedge.net/dotnet/</OfficialBaseURL>
<OfficialBaseURL>https://dotnetcli.blob.core.windows.net/dotnet/</OfficialBaseURL>
<!-- Allow overriding the public base URL for Unified Build scenarios to pull assets from a local build. -->
<PublicBaseURL Condition="'$(PublicBaseURL)' == ''">https://dotnetbuilds.azureedge.net/public/</PublicBaseURL>
<InternalBaseURL>https://dotnetbuilds.azureedge.net/internal/</InternalBaseURL>
<PublicBaseURL Condition="'$(PublicBaseURL)' == ''">https://dotnetbuilds.blob.core.windows.net/public/</PublicBaseURL>
<InternalBaseURL>https://dotnetbuilds.blob.core.windows.net/internal/</InternalBaseURL>
<!-- Allow overriding where installers are pulled in from previously completed jobs in Unified Build scenarios. -->
<CrossArchitectureInstallerBasePath Condition="'$(CrossArchitectureInstallerBasePath)' == ''">$(ArtifactsShippingPackagesDir)</CrossArchitectureInstallerBasePath>
</PropertyGroup>
Expand Down

0 comments on commit 18e00de

Please sign in to comment.