Merge pull request #816 from livarcocc/authenticode

Adjusting build.ps1 to work in VSO with the -NoPackage flag
This commit is contained in:
Livar 2016-01-12 17:50:29 -08:00
commit 61f837d711
2 changed files with 7 additions and 0 deletions

View file

@ -45,6 +45,7 @@ _ "$RepoRoot\scripts\test\validate-dependencies.ps1"
if ($NoPackage){
info "Skipping Packaging"
exit 0
}
else {
_ "$RepoRoot\scripts\package\package.ps1"

View file

@ -0,0 +1,6 @@
@echo off
REM Copyright (c) .NET Foundation and contributors. All rights reserved.
REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
powershell -NoProfile -NoLogo -Command "%~dp0package.ps1 %*; exit $LastExitCode;"