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.
1 parent 795ec9f commit 405dcfcCopy full SHA for 405dcfc
Build.ps1
@@ -35,10 +35,10 @@ foreach ($src in Get-ChildItem src/*) {
35
36
if ($prefix) {
37
# release build
38
- & dotnet pack -c Release -o ../../artifacts --version-prefix=$prefix
+ & dotnet pack -c Release -o ../../artifacts /p:VersionPrefix="$prefix"
39
} elseif ($suffix) {
40
# prerelease build
41
- & dotnet pack -c Release -o ../../artifacts --version-suffix=$suffix
+ & dotnet pack -c Release -o ../../artifacts /p:VersionSuffix="$suffix"
42
} else {
43
# local build
44
& dotnet pack -c Release -o ../../artifacts
0 commit comments