yck1509 / ConfuserEx

An open-source, free protector for .NET applications
http://yck1509.github.io/ConfuserEx/
Other
3.57k stars 1.64k forks source link

How can change renaming mode #197

Closed danysu closed 9 years ago

danysu commented 9 years ago

How can change renaming mode the GUI ?

xmatthias commented 9 years ago

taken from my answer for issue #196:

try to open the project file (*.crproj) and modify the rule for your file as follows (attaching the argument mode...):

<rule pattern="true" inherit="false">
      <protection id="rename" >
        <argument name="mode" value="debug" />
      </protection>
    </rule>

this definitely worked for me...

danysu commented 9 years ago

I want changing settings with GUI version.

ElenaMilito commented 9 years ago

@LiangChow , ConfuserEx GUI version is not supported for changing settings, Currently I am using the Ezriz .NET Reactor easy changing all settings from PropertyGrid .

xmatthias commented 9 years ago

the changes made in the file itself will still be applicable in the gui-version - just changing them in the GUI is not working atm...

yck1509 commented 9 years ago

Hi, Changing renaming modes requires modifying protection parameter, which is not planned to implement. If you would like to modify protection parameter, you could edit the crproj file manually and GUI would still load it fine.

mallapurbharat commented 9 years ago

was struggling with the same thing... Thanks xmatthias! :)