Dotfuscator user community

I am trying to use the dotfuscator community post. I created a simple component with 1 method. I run it through the dotfuscator community post in .net 2.0, basically just selecting the DLL and clicking on build. It seems to work. But when I use ILdasm to view the .dll, I can still see the method name. I see multiple elements as a, b, c, d, e .... But I can still see the class name and name. Is there something I can't see?

+2


source to share


1 answer


You should check if the "Library" option is selected in the Dotfuscator preferences.



If this parameter is active, Dotfuscator will NOT rename the public and protected methods of your assembly (to allow you or a third party to use that assembly ... while the internal method code is running).

+10


source







All Articles