Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/Ubuntu/bionic.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ function install_outdated_dotnets() {
echo "[INFO] Running install_outdated_dotnets..."

# .NET SDK 1.1.14 with 1.1.13 & 1.0.16 runtimes
wget -O dotnet-sdk.tar.gz https://dotnetcli.azureedge.net/dotnet/Sdk/1.1.14/dotnet-dev-ubuntu.18.04-x64.1.1.14.tar.gz
wget -O dotnet-sdk.tar.gz https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-ubuntu.18.04-x64.1.1.14.tar.gz
sudo tar zxf dotnet-sdk.tar.gz -C /usr/share/dotnet

# .NET SDK 2.1.202 with 2.0.9 runtime
wget -O dotnet-sdk.tar.gz https://dotnetcli.azureedge.net/dotnet/Sdk/2.1.202/dotnet-sdk-2.1.202-linux-x64.tar.gz
wget -O dotnet-sdk.tar.gz https://builds.dotnet.microsoft.com/dotnet/Sdk/2.1.202/dotnet-sdk-2.1.202-linux-x64.tar.gz
sudo tar zxf dotnet-sdk.tar.gz -C /usr/share/dotnet

rm dotnet-sdk.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions scripts/Ubuntu/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -953,11 +953,11 @@ function install_outdated_dotnets() {
echo "[INFO] Running install_outdated_dotnets..."

# .NET SDK 1.1.14 with 1.1.13 & 1.0.16 runtimes
wget -O dotnet-sdk.tar.gz https://dotnetcli.azureedge.net/dotnet/Sdk/1.1.14/dotnet-dev-ubuntu.16.04-x64.1.1.14.tar.gz
wget -O dotnet-sdk.tar.gz https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-ubuntu.16.04-x64.1.1.14.tar.gz
sudo tar zxf dotnet-sdk.tar.gz -C /usr/share/dotnet

# .NET SDK 2.1.202 with 2.0.9 runtime
wget -O dotnet-sdk.tar.gz https://dotnetcli.azureedge.net/dotnet/Sdk/2.1.202/dotnet-sdk-2.1.202-linux-x64.tar.gz
wget -O dotnet-sdk.tar.gz https://builds.dotnet.microsoft.com/dotnet/Sdk/2.1.202/dotnet-sdk-2.1.202-linux-x64.tar.gz
sudo tar zxf dotnet-sdk.tar.gz -C /usr/share/dotnet

rm dotnet-sdk.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion scripts/Windows/install_dotnet_core_sdks.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function Install-SDK($sdkVersion) {
Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
& $env:temp\dotnet-install.ps1 -Architecture x64 -Version $sdkVersion -InstallDir "$env:ProgramFiles\dotnet"
}
#install location for 1.1.14 is "https://dotnetcli.azureedge.net/dotnet/Sdk/1.1.14/dotnet-dev-win-x64.1.1.14.zip"
#install location for 1.1.14 is "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-win-x64.1.1.14.zip"
Write-Host "Warming up .NET Core SDK $sdkVersion..."
$projectPath = "$env:temp\TestApp"
New-Item -Path $projectPath -Force -ItemType Directory | Out-Null
Expand Down