Is there any program that obfuscates C# source code?

Posted by markattwood on Stack Overflow See other posts from Stack Overflow or by markattwood
Published on 2010-05-30T06:17:38Z Indexed on 2010/05/30 6:22 UTC
Read the original article Hit count: 242

Our requirement is being able to integrate our DLLs with ClickOnce. Dotfuscator does the obfuscation job nicely but the obfuscated DLLs cannot be deployed with ClickOnce on customer side. On our side, we can handle it perfectly. Moreover, the obfuscated assemblies sometime crashes our .NET CF app. It turns out to a solution that creates a temporary source and obfuscates it before compiling with VS. This ensures that the compiled assembly can be integrated with ClickOnce and fully compatible with .NET CF. What is the best tool to obfuscate C# SOURCE CODE (not assemblies)?

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET