Click here to Skip to main content
15,920,708 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Eazfuscator.net 3.1 shows process is completed but in the reflector fuscated is not working
Posted
Comments
Sergey Alexandrovich Kryukov 19-Sep-11 1:05am    
Not a question. "Not working..." Hm. Really expect some help?
--SA
Prerak Patel 19-Sep-11 1:08am    
Not clear.

1 solution

If you obfuscate a VisualStudio project all the obfuscator assistant does is insert a post-build event command line. For reference purposes I'll paste it in below:

if /I "$(ConfigurationName)" == "Release" Eazfuscator.NET.exe "$(TargetPath)" --msbuild-project-path "$(ProjectPath)" --msbuild-project-configuration "$(ConfigurationName)" --msbuild-project-platform "$(PlatformName)" --msbuild-solution-path "$(SolutionPath)" -n --newline-flush -v 3.1


Here you can see that if the ConfigurationName equals release Eazfuscator will be run on the output of your build. It would have been easier for you if you had just read the included documentation.

Best Regards,

—MRB
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900