I realize this is a rather odd request, but I was wondering if anyone was aware of some minification/obfuscation tools that work on C# source code (not a compiled assembly). I am trying to reduce the character count of an already written application to meet a character limit and I can't seem to find any tools that will help me achieve this task.
Main features I am interested in:
- Strip Whitespace
- Shorten Variable Names
It doesn't have to be a full on obfuscator, just something that will reduce the character count of a block of code quickly and conveniently.
This is not intended to have any practical or real world application, it's for a competition.