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 ace649d commit c7fb845Copy full SHA for c7fb845
build/build.ps1
@@ -14,7 +14,7 @@ Properties {
14
if(-not [string]::IsNullOrEmpty($pre_release)) {
15
$sem_version = "$sem_version-$($pre_release)"
16
17
- if(-not ($pre_release -eq "build" -or $pre_release -eq "local")) {
+ if($pre_release -eq "build" -or $pre_release -eq "local") {
18
# These should be + instead of -, but nuget doesn't allow that right now
19
# Also padding the build number because nuget sorts lexigraphically
20
# meaning that 2 > 10. So, we make it such that 0002 < 0010.
0 commit comments