diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-08-08 19:32:58 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-08-08 19:32:58 -0400 |
commit | 8c58bdae6f10dfb55d44f900480059f495d5f37e (patch) | |
tree | 240612d7dd4628364332f9c9b5790966423ce48b /src | |
parent | edf2c5dbea777460ef0eb9d5829089ee18cc17b0 (diff) | |
download | SMAPI-8c58bdae6f10dfb55d44f900480059f495d5f37e.tar.gz SMAPI-8c58bdae6f10dfb55d44f900480059f495d5f37e.tar.bz2 SMAPI-8c58bdae6f10dfb55d44f900480059f495d5f37e.zip |
remove DebugType build property
The 'portable' format is preferred in newer .NET versions, but it's set by default now so we don't need to override it anymore.
Diffstat (limited to 'src')
-rw-r--r-- | src/SMAPI.ModBuildConfig/build/smapi.targets | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/SMAPI.ModBuildConfig/build/smapi.targets b/src/SMAPI.ModBuildConfig/build/smapi.targets index 70182125..12619439 100644 --- a/src/SMAPI.ModBuildConfig/build/smapi.targets +++ b/src/SMAPI.ModBuildConfig/build/smapi.targets @@ -8,8 +8,7 @@ ** Set build options **********************************************--> <PropertyGroup> - <!-- include PDB file by default to enable line numbers in stack traces --> - <DebugType Condition="'$(DebugType)' == ''">pdbonly</DebugType> + <!-- enable line numbers in stack traces --> <DebugSymbols>true</DebugSymbols> <!-- don't create the 'refs' folder (which isn't useful for mods) --> |