a8aea60f14
Set the correct channel so that the stage0 binaries are downloaded correctly. ** This commit cannot be directly merged from the release branch to the master branch **
25 lines
866 B
PowerShell
25 lines
866 B
PowerShell
#
|
|
# 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\_utility.ps1
|
|
|
|
$Rid = "win7-x64"
|
|
$Tfm = "dnxcore50"
|
|
$RepoRoot = Convert-Path "$PSScriptRoot\..\.."
|
|
$OutputDir = "$RepoRoot\artifacts\$Rid"
|
|
$DnxDir = "$OutputDir\dnx"
|
|
$DnxRoot = "$DnxDir\bin"
|
|
$Stage1Dir = "$OutputDir\stage1"
|
|
$Stage2Dir = "$OutputDir\stage2"
|
|
$HostDir = "$OutputDir\corehost"
|
|
$PackageDir = "$RepoRoot\artifacts\packages\dnvm"
|
|
$env:ReleaseSuffix = "beta"
|
|
$env:Channel = "$env:ReleaseSuffix"
|
|
|
|
# Set reasonable defaults for unset variables
|
|
setEnvIfDefault "DOTNET_INSTALL_DIR" "$(Convert-Path "$PSScriptRoot\..")\.dotnet_stage0\win7-x64"
|
|
setEnvIfDefault "DOTNET_CLI_VERSION" "0.1.0.0"
|
|
setPathAndHomeIfDefault "$Stage2Dir"
|
|
setVarIfDefault "Configuration" "Debug"
|