We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c2f6316 + c3090fc commit 01c8442Copy full SHA for 01c8442
Build.ps1
@@ -25,7 +25,11 @@ foreach ($src in ls src/*) {
25
echo "build: Packaging project in $src"
26
27
& dotnet build -c Release --version-suffix=$buildSuffix
28
- & dotnet pack -c Release --include-symbols -o ..\..\artifacts --version-suffix=$suffix --no-build
+ if ($suffix) {
29
+ & dotnet pack -c Release --include-symbols -o ..\..\artifacts --version-suffix=$suffix --no-build
30
+ } else {
31
+ & dotnet pack -c Release --include-symbols -o ..\..\artifacts --no-build
32
+ }
33
if($LASTEXITCODE -ne 0) { exit 1 }
34
35
Pop-Location
0 commit comments