From e34e304e9d60579a0d006c862b2528e52a67007f Mon Sep 17 00:00:00 2001 From: Scott Hanselman Date: Thu, 26 Dec 2024 18:16:08 -0800 Subject: [PATCH] Update boostrap-new-os.md Changing URLs because of CDN change referenced at https://github.com/dotnet/core/issues/9671 --- Documentation/boostrap-new-os.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/boostrap-new-os.md b/Documentation/boostrap-new-os.md index f731219913..5e33db12bd 100644 --- a/Documentation/boostrap-new-os.md +++ b/Documentation/boostrap-new-os.md @@ -55,14 +55,14 @@ itself. The way to construct the URL can be found in the `init-tools.sh` file in the root of each repo. Currently, it is constructed as follows: ```bash -https://dotnetcli.azureedge.net/dotnet/Sdk/${__DOTNET_TOOLS_VERSION}/dotnet-sdk-${__DOTNET_TOOLS_VERSION}-${__PKG_RID}-${__PKG_ARCH}.tar.gz +https://builds.dotnet.microsoft.com/dotnet/Sdk/${__DOTNET_TOOLS_VERSION}/dotnet-sdk-${__DOTNET_TOOLS_VERSION}-${__PKG_RID}-${__PKG_ARCH}.tar.gz ``` The `${__DOTNET_TOOLS_VERSION}` is replaced by the seed CLI version, the `${__PKG_RID}` by the RID of the current platform and `${__PKG_ARCH}` by the architecture of the current platform. So for tools version `2.0.0` on linux distro with x64 architecture where portable dotnet core can be used, the URL is -`https://dotnetcli.azureedge.net/dotnet/Sdk/2.0.0/dotnet-sdk-2.0.0-linux-x64.tar.gz` +`https://builds.dotnet.microsoft.com/dotnet/Sdk/2.0.0/dotnet-sdk-2.0.0-linux-x64.tar.gz` To download it, `wget` or `curl` tools can be used. Once the file is downloaded, create a new folder and untar the file into it. So e.g. for the file mentioned above, use: