Under VS2008, I’m working on a solution containing various DLL project.
Is it possible to obfuscate the whole code?
Under VS2008, I’m working on a solution containing various DLL project. Is it possible
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I use ILMerge to merge my assemblies into one, then run that single assembly through the obfuscator of choice. ILMerge has an option to change all types to Internal – I use that flag to increase the obfuscator’s effectiveness. ILMerge works just fine on .NET 3.5 executables – I haven’t had a chance to test it with the beta bits of .NET 4 yet, however.
All of this can be done transparently by adding a post-build command to your final executable.
The obfuscator I use, by the way, is the free Babel Obfuscator.