From abfbd85672ba891aa7618142ea750c26bad8dd6d Mon Sep 17 00:00:00 2001 From: pardahlman Date: Sun, 7 May 2017 20:46:03 +0200 Subject: [PATCH] (#211) Add temporary work around for version prefix --- .build/Build.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.build/Build.ps1 b/.build/Build.ps1 index 0c983103..e87266db 100644 --- a/.build/Build.ps1 +++ b/.build/Build.ps1 @@ -20,10 +20,11 @@ foreach ($src in ls ../src/*) { write-host "build: Packaging project in $src" -ForegroundColor Green - & dotnet pack -c Release -o ..\..\artifacts --version-suffix="beta2" + & dotnet msbuild "/t:Restore;Pack" /p:VersionSuffix=beta6 /p:Configuration=Release + # & dotnet pack -c Release -o ..\..\artifacts --version-suffix="beta2" if($LASTEXITCODE -ne 0) { exit 1 } Pop-Location } -Pop-Location \ No newline at end of file +Pop-Location