mkaring / ConfuserEx

An open-source, free protector for .NET applications
https://mkaring.github.io/ConfuserEx/
MIT License
2.26k stars 349 forks source link

Update ConfuserEngine.cs - Do not create debug files when debug=false #532

Open horschmwagner opened 1 year ago

horschmwagner commented 1 year ago

Confuser does write debug files (.pdb) even if debug=false in project file.

AppVeyorBot commented 1 year ago

:white_check_mark: Build ConfuserEx 1033 completed (commit https://github.com/mkaring/ConfuserEx/commit/3bdd9fe102 by @horschmwagner)

Guiorgy commented 8 months ago

Why does git show so many changes when really only lines 424-425 changed? xd

if(!context.Project.Debug)
    return;
TheHellTower commented 8 months ago
if(!context.Project.Debug)
  return;

The IDE tried to refactor the code apparently..