in a wcf C# application, I am using:
#if DEBUG
//debug mode
#else
//release mode
#endif
to detect if I am in debug mode or release mode and have different logic for each.
But now I have created a new Configuration in the configuration manager called "Local"
how can I also create a macro similar to "DEBUG" for when I'm building in "Local" configuration. So that I can do something like
#if DEBUG
//debug mode
#elif LOCAL
//local mode
#else
//release mode
#endif