summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlanturnalis <96697794+lanturnalis@users.noreply.github.com>2022-07-25 21:31:09 -0500
committerGitHub <noreply@github.com>2022-07-25 21:31:09 -0500
commitedf2c5dbea777460ef0eb9d5829089ee18cc17b0 (patch)
tree492d94f8e7c3d7f1009b7918b32f3fa82e93c89c /src
parent3da5917eed5fc9db3017e2bf0d0f9bf92c295e6a (diff)
downloadSMAPI-edf2c5dbea777460ef0eb9d5829089ee18cc17b0.tar.gz
SMAPI-edf2c5dbea777460ef0eb9d5829089ee18cc17b0.tar.bz2
SMAPI-edf2c5dbea777460ef0eb9d5829089ee18cc17b0.zip
Add condition to DebugType to allow for overriding
Diffstat (limited to 'src')
-rw-r--r--src/SMAPI.ModBuildConfig/build/smapi.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.ModBuildConfig/build/smapi.targets b/src/SMAPI.ModBuildConfig/build/smapi.targets
index b66ec27b..70182125 100644
--- a/src/SMAPI.ModBuildConfig/build/smapi.targets
+++ b/src/SMAPI.ModBuildConfig/build/smapi.targets
@@ -9,7 +9,7 @@
**********************************************-->
<PropertyGroup>
<!-- include PDB file by default to enable line numbers in stack traces -->
- <DebugType>pdbonly</DebugType>
+ <DebugType Condition="'$(DebugType)' == ''">pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
<!-- don't create the 'refs' folder (which isn't useful for mods) -->