Default channel in the install scripts; dotnet-install.ps1 and dotnet-install.sh = “release/1.0.0”

For the Runtime: resolves to: 1.0.5
For the SDK: resolves to: 1.0.4
This commit is contained in:
John Beisner 2017-05-23 15:09:31 -07:00
parent 1ded4f11e3
commit 229518b486
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@
Installs dotnet cli. If dotnet installation already exists in the given directory Installs dotnet cli. If dotnet installation already exists in the given directory
it will update it only if the requested version differs from the one already installed. it will update it only if the requested version differs from the one already installed.
.PARAMETER Channel .PARAMETER Channel
Default: master Default: release/1.0.0
Download from the Channel specified Download from the Channel specified
.PARAMETER Version .PARAMETER Version
Default: latest Default: latest
@ -55,7 +55,7 @@
#> #>
[cmdletbinding()] [cmdletbinding()]
param( param(
[string]$Channel="master", [string]$Channel="release/1.0.0",
[string]$Version="Latest", [string]$Version="Latest",
[string]$InstallDir="<auto>", [string]$InstallDir="<auto>",
[string]$Architecture="<auto>", [string]$Architecture="<auto>",

View file

@ -659,7 +659,7 @@ local_version_file_relative_path="/.version"
bin_folder_relative_path="" bin_folder_relative_path=""
temporary_file_template="${TMPDIR:-/tmp}/dotnet.XXXXXXXXX" temporary_file_template="${TMPDIR:-/tmp}/dotnet.XXXXXXXXX"
channel="master" channel="release/1.0.0"
version="Latest" version="Latest"
install_dir="<auto>" install_dir="<auto>"
architecture="<auto>" architecture="<auto>"