Conditional symbols doesn't work

Viewed 1387

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.

2 Answers
Related