16 lines
368 B
PowerShell
16 lines
368 B
PowerShell
|
$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 ***"
|
||
|
}
|