Skip to content

Commit 16a37fc

Browse files
committed
fix other missing quotes
1 parent f1e8e1e commit 16a37fc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/SMAPI.ModBuildConfig/build/smapi.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
<EnableModDeploy Condition="'$(EnableModDeploy)' == ''">true</EnableModDeploy>
2222
<EnableModZip Condition="'$(EnableModZip)' == ''">true</EnableModZip>
2323
<EnableHarmony Condition="'$(EnableHarmony)' == ''">false</EnableHarmony>
24-
<EnableGameDebugging Condition="$(EnableGameDebugging) == ''">true</EnableGameDebugging>
24+
<EnableGameDebugging Condition="'$(EnableGameDebugging)' == ''">true</EnableGameDebugging>
2525
<CopyModReferencesToBuildOutput Condition="'$(CopyModReferencesToBuildOutput)' == '' OR ('$(CopyModReferencesToBuildOutput)' != 'true' AND '$(CopyModReferencesToBuildOutput)' != 'false')">false</CopyModReferencesToBuildOutput>
2626
</PropertyGroup>
2727

28-
<PropertyGroup Condition="'$(OS)' == 'Windows_NT' AND $(EnableGameDebugging) == 'true'">
28+
<PropertyGroup Condition="'$(OS)' == 'Windows_NT' AND '$(EnableGameDebugging)' == 'true'">
2929
<!-- enable game debugging -->
3030
<StartAction>Program</StartAction>
3131
<StartProgram>$(GamePath)\StardewModdingAPI.exe</StartProgram>

0 commit comments

Comments
 (0)