Whats wrong with these pre-processor directive in C#
#define OUTPUT_DIRECTORY \"E:\\asdf\\sdfg\\jhkl\\\"
I also tried giving:
You cannot give that symbol (OUTPUT_DIRECTORY) a value, the symbol can only be "defined" or "undefined" so you can use it in a #if OUTPUT_DIRECTORY ... #endif.
#if OUTPUT_DIRECTORY
#endif
See http://msdn.microsoft.com/en-us/library/yt3yck0x(VS.71).aspx