Reputation: 145
My company has an ASP.NET
website (not web app). All the tools we have looked at only obfuscate DLL
or EXE
files (not the source). What we need is a tool to obfuscate the source itself (.cs
); preferably in Visual Studio. Changing the names of everything is not an option. So again, is there any source level obfuscator?
Upvotes: 4
Views: 3097
Reputation: 14502
First step would be to refactor to inline variables and methods (unless it defects performance) and rename them to some random unmeaningful letters and numbers. I'd suggest using Resharper.
(inlining in this context means inline as the Resharper refactoring functionality)
Upvotes: 1
Reputation: 3960
For locking application and code obsuscation i use intellilock, is not free but is good.
Upvotes: 0