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
it will update it only if the requested version differs from the one already installed.
.PARAMETER Channel
Default: master
Default: release/1.0.0
Download from the Channel specified
.PARAMETER Version
Default: latest
@ -55,7 +55,7 @@
#>
[cmdletbinding()]
param(
[string]$Channel="master",
[string]$Channel="release/1.0.0",
[string]$Version="Latest",
[string]$InstallDir="<auto>",
[string]$Architecture="<auto>",

View file

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