diff options
author | lanturnalis <96697794+lanturnalis@users.noreply.github.com> | 2022-07-25 21:31:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-25 21:31:09 -0500 |
commit | edf2c5dbea777460ef0eb9d5829089ee18cc17b0 (patch) | |
tree | 492d94f8e7c3d7f1009b7918b32f3fa82e93c89c /src | |
parent | 3da5917eed5fc9db3017e2bf0d0f9bf92c295e6a (diff) | |
download | SMAPI-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.targets | 2 |
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) --> |