Temporarily hard coding stage0 to come from feature msbuild. This will make a stage0 available that has a dotnet build3 command. Will revert this once we have a rel1.0.0 available with this verb.

This commit is contained in:
Livar Cunha 2016-08-31 12:46:24 -07:00
parent 0c60dc7c2e
commit 4220447322
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ $RepoRoot = "$PSScriptRoot"
# Install a stage 0
Write-Host "Installing .NET Core CLI Stage 0 from branchinfo channel"
& "$RepoRoot\scripts\obtain\dotnet-install.ps1" -Channel $env:CHANNEL -Architecture $Architecture -Verbose
& "$RepoRoot\scripts\obtain\dotnet-install.ps1" -Channel feature-msbuild -Architecture $Architecture -Verbose
if($LASTEXITCODE -ne 0) { throw "Failed to install stage0" }
# Put the stage0 on the path

View file

@ -14,7 +14,7 @@ while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symli
done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
$DIR/scripts/obtain/dotnet-install.sh --channel $CHANNEL --verbose
$DIR/scripts/obtain/dotnet-install.sh --channel feature-msbuild --verbose
__init_tools_log=$DIR/init-tools.log
__BUILD_TOOLS_CLI_VERSION=$(cat "$DIR/BuildToolsCliVersion.txt")