I have a class library contains the following code snippet:
#if (DEBUG && CLOUD)
return "DEBUG && CLOUD";
#elif (DEBUG && !CLOUD)
return "DEBUG";
#else
return "Release";
#endif
When I reference this library into my application I got only DEBUG or Release as returns, even if CLOUD is defined.
The behavior is so weird, so I went to the solution properties, under the configuration properties tab. I shocked by what Visual Studio do.