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.