I'm using DotFuscator to obfuscate my source code. How do I make the obfuscated file, which lives in a separate directory, the primary output of my Setup proje开发者_运维知识库ct? If I overwrite file in obj and release folders with obfuscated file, it just gets overwritten my I recompile Setup project.
Thanks. Charlie
You need to create Dotfuscator project first, i.e right click on solution->add project->select Dotfuscator as project type. To the project created right click on Input-> map to project output from your actual project. Build the Dotfuscator project. Next add the setup project. Point setup project output to that of Dotfuscator. And now build to create the setup. Now your code is obfuscated.
精彩评论