2015-11-16 19:21:57 +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.
|
|
|
|
#
|
|
|
|
|
2015-11-11 01:30:01 +00:00
|
|
|
$Rid = "win7-x64"
|
|
|
|
$Tfm = "dnxcore50"
|
|
|
|
|
|
|
|
$RepoRoot = Convert-Path "$PSScriptRoot\.."
|
|
|
|
|
|
|
|
$OutputDir = "$RepoRoot\artifacts\$Rid"
|
|
|
|
$Stage1Dir = "$OutputDir\stage1"
|
|
|
|
$Stage2Dir = "$OutputDir\stage2"
|
|
|
|
$HostDir = "$OutputDir\corehost"
|
|
|
|
$PackageDir = "$RepoRoot\artifacts\packages\dnvm"
|
|
|
|
|
|
|
|
function header([string]$message)
|
|
|
|
{
|
|
|
|
Write-Host -ForegroundColor Green "*** $message ***"
|
|
|
|
}
|