File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,14 +55,14 @@ itself. The way to construct the URL can be found in the `init-tools.sh` file in
5555the root of each repo. Currently, it is constructed as follows:
5656
5757``` bash
58- https://dotnetcli.azureedge.net /dotnet/Sdk/${__DOTNET_TOOLS_VERSION} /dotnet-sdk-${__DOTNET_TOOLS_VERSION} -${__PKG_RID} -${__PKG_ARCH} .tar.gz
58+ https://builds.dotnet.microsoft.com /dotnet/Sdk/${__DOTNET_TOOLS_VERSION} /dotnet-sdk-${__DOTNET_TOOLS_VERSION} -${__PKG_RID} -${__PKG_ARCH} .tar.gz
5959```
6060
6161The ` ${__DOTNET_TOOLS_VERSION} ` is replaced by the seed CLI version, the
6262` ${__PKG_RID} ` by the RID of the current platform and ` ${__PKG_ARCH} ` by the
6363architecture of the current platform. So for tools version ` 2.0.0 ` on linux
6464distro with x64 architecture where portable dotnet core can be used, the URL is
65- ` https://dotnetcli.azureedge.net /dotnet/Sdk/2.0.0/dotnet-sdk-2.0.0-linux-x64.tar.gz `
65+ ` https://builds.dotnet.microsoft.com /dotnet/Sdk/2.0.0/dotnet-sdk-2.0.0-linux-x64.tar.gz `
6666To download it, ` wget ` or ` curl ` tools can be used. Once the file is downloaded,
6767create a new folder and untar the file into it.
6868So e.g. for the file mentioned above, use:
You can’t perform that action at this time.
0 commit comments