-
Hi. I am new to ConfuserEx GUI. I want to create a Symbol Map when I obsfucate an exe using the ConfuserEx GUI. So far I have done the following:
Then I go to Protect! tab, & click As far as I have researched in the repo's closed issue in here, I need to use Can anyone guide me how to apply Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello, one major limitation of the GUI is that you can't add parameters to the protections. This means that you can't enable the renaming mode directly in the GUI. <protection id="rename" /> That is the place, where you can add the additional parameters. In your case you want to enable the <protection id="rename">
<argument name="mode" value="sequential" />
</protection> Once you did that, you can save the file and open it again in the GUI. The GUI will not show the parameter, but it will use it. You can find more information regarding the modes and possible settings in the wiki. |
Beta Was this translation helpful? Give feedback.
Hello,
one major limitation of the GUI is that you can't add parameters to the protections. This means that you can't enable the renaming mode directly in the GUI.
That being said, it's very easy to enable the mode directly in the
*.crproj
file. Best way to do it, is to setup the project using the GUI and save it once done. The project file can be opened with any editor, it's just a simple XML file. You'll find the entries for the protections in there, such as:That is the place, where you can add the additional parameters. In your case you want to enable the
sequential
rename mode, so you would exchange the protection entry listed above to: