16 lines
651 B
PowerShell
16 lines
651 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\..\common\_common.ps1"
|
||
|
|
||
|
# Publish each test project
|
||
|
loadTestProjectList | foreach {
|
||
|
dotnet publish --framework "dnxcore50" --runtime "$Rid" --output "$TestBinRoot" --configuration "$Configuration" "$RepoRoot\test\$($_.ProjectName)"
|
||
|
if (!$?) {
|
||
|
Write-Host Command failed: dotnet publish --framework "dnxcore50" --runtime "$Rid" --output "$TestBinRoot" --configuration "$Configuration" "$RepoRoot\test\$($_.ProjectName)"
|
||
|
exit 1
|
||
|
}
|
||
|
}
|