Skip to content

Commit abfbd85

Browse files
committed
(#211) Add temporary work around for version prefix
1 parent 94c8fff commit abfbd85

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.build/Build.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ foreach ($src in ls ../src/*) {
2020

2121
write-host "build: Packaging project in $src" -ForegroundColor Green
2222

23-
& dotnet pack -c Release -o ..\..\artifacts --version-suffix="beta2"
23+
& dotnet msbuild "/t:Restore;Pack" /p:VersionSuffix=beta6 /p:Configuration=Release
24+
# & dotnet pack -c Release -o ..\..\artifacts --version-suffix="beta2"
2425
if($LASTEXITCODE -ne 0) { exit 1 }
2526

2627
Pop-Location
2728
}
2829

29-
Pop-Location
30+
Pop-Location

0 commit comments

Comments
 (0)