Alejandro Barreiro
Alejandro Barreiro

Reputation: 145

Obfuscating .cs source itself in Visual Studio

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

Answers (3)

Ira Baxter
Ira Baxter

Reputation: 95326

See our C# Obfuscator tool. Operates on Souce files.

Upvotes: 3

YoryeNathan
YoryeNathan

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

ddarellis
ddarellis

Reputation: 3960

For locking application and code obsuscation i use intellilock, is not free but is good.

Upvotes: 0

Related Questions