File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -9,5 +9,9 @@ Invoke-WebRequest -Uri $installScriptUrl -OutFile $installScript -MaximumRetryCo
99$globalJsonFile = " $PSScriptRoot \..\global.json"
1010$dotnetInstallDir = " $PSScriptRoot \.dotnet"
1111
12- . $installScript - InstallDir $dotnetInstallDir - JSonFile $globalJsonFile
13- . $installScript - InstallDir $dotnetInstallDir - Channel 10.0
12+ # SDK from global.json
13+ . $installScript - InstallDir $dotnetInstallDir - JSonFile $globalJsonFile
14+
15+ # Runtimes for tests
16+ . $installScript - InstallDir $dotnetInstallDir - Runtime dotnet - Channel 8.0
17+ . $installScript - InstallDir $dotnetInstallDir - Runtime dotnet - Channel 9.0
Original file line number Diff line number Diff line change @@ -13,5 +13,9 @@ chmod +x "$install_script"
1313global_json_file=" $( dirname " $0 " ) /../global.json"
1414dotnet_install_dir=" $( dirname " $0 " ) /.dotnet"
1515
16+ # SDK from global.json
1617" $install_script " --install-dir " $dotnet_install_dir " --jsonfile " $global_json_file "
17- " $install_script " --install-dir " $dotnet_install_dir " --channel 10.0
18+
19+ # Runtimes for tests
20+ " $install_script " --install-dir " $dotnet_install_dir " --runtime dotnet --channel 8.0
21+ " $install_script " --install-dir " $dotnet_install_dir " --runtime dotnet --channel 9.0
You can’t perform that action at this time.
0 commit comments