Skip to content

Commit b4c5c40

Browse files
Merge pull request #184 from tannergooding/main
Fixing the condition under which PlatformTarget is set
2 parents 7977b42 + 6a3e69f commit b4c5c40

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/build.ps1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ try {
9696
$architecture = "<auto>"
9797
}
9898
}
99-
100-
if (($architecture -ne "") -and ($architecture -ne "<auto>")) {
99+
elseif (($architecture -ne "") -and ($architecture -ne "<auto>")) {
101100
$properties += "/p:PlatformTarget=$architecture"
102101
}
103102

0 commit comments

Comments
 (0)