Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBekir Ozturk <60651445+bekir-ozturk@users.noreply.github.com>2022-01-14 21:46:19 +0300
committerGitHub <noreply@github.com>2022-01-14 21:46:19 +0300
commit60d3d332a648e26752c351b24e633fdfb5ec776d (patch)
tree0eb5220ebe7d6a0b86acd140de04c8b351377b87
parent9157d4b211a24df637868c248828fecabcaae6c9 (diff)
-rw-r--r--eng/common/tools.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1
index f1e1cb5395..b11c24af5c 100644
--- a/eng/common/tools.ps1
+++ b/eng/common/tools.ps1
@@ -263,7 +263,7 @@ function GetDotNetInstallScript([string] $dotnetRoot) {
if (!(Test-Path $installScript)) {
Create-Directory $dotnetRoot
$ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit
- $uri = "https://dotnet.microsoft.com/download/dotnet/scripts/$dotnetInstallScriptVersion/dotnet-install.ps1"
+ $uri = "https://raw.githubusercontent.com/dotnet/install-scripts/main/src/dotnet-install.ps1"
Retry({
Write-Host "GET $uri"