Obfuscation, Naming Conventions and Class Names
photomoose
Posts: 2
Hello,
I am using Caliburn Micro and Castle Windsor in my WPF application and have a number of naming conventions. For example, when Caliburn loads a class called SomethingViewModel, it will automatically initialise a class called SomethingView.
I need to obfuscate my code, but cannot change the class names otherwise the naming conventions will not work.
Is it possible to obfuscate the entire class without obfuscating the class name?
Thanks in advance,
Tom
I am using Caliburn Micro and Castle Windsor in my WPF application and have a number of naming conventions. For example, when Caliburn loads a class called SomethingViewModel, it will automatically initialise a class called SomethingView.
I need to obfuscate my code, but cannot change the class names otherwise the naming conventions will not work.
Is it possible to obfuscate the entire class without obfuscating the class name?
Thanks in advance,
Tom
Comments
You can try applying the DoNotObfuscate attribute to your class before running SmartAssembly over it. This should exclude the type definition but not the type's members. Please see:
http://www.red-gate.com/supportcenter/C ... .0/toc.htm