2015-12-28 19:47:21 +00:00
|
|
|
#
|
|
|
|
# Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
#
|
|
|
|
|
|
|
|
. $PSScriptRoot\..\common\_common.ps1
|
|
|
|
|
|
|
|
# Use a repo-local install directory (but not the artifacts directory because that gets cleaned a lot
|
|
|
|
if (!(Test-Path $env:DOTNET_INSTALL_DIR))
|
|
|
|
{
|
|
|
|
mkdir $env:DOTNET_INSTALL_DIR | Out-Null
|
|
|
|
}
|
|
|
|
|
|
|
|
# Install a stage 0
|
|
|
|
header "Installing dotnet stage 0"
|
|
|
|
_ "$RepoRoot\scripts\obtain\install.ps1"
|
|
|
|
|
|
|
|
# Put stage0 on the PATH
|
|
|
|
$env:PATH = "$env:DOTNET_INSTALL_DIR\cli\bin;$env:PATH"
|
|
|
|
|
|
|
|
# Download dnx to copy to stage2
|
|
|
|
header "Downloading DNX $DnxVersion"
|
2016-01-13 00:36:31 +00:00
|
|
|
_ "$RepoRoot\scripts\obtain\install-dnx.ps1"
|