Using the DEBUG configuration, I can switch behaviour on and off using this type of syntax:
#if DEBUG
Console.WriteLine("Debug");
#else
Console.WriteLine("Not Debug");
#endif
However, if I set up a different configuration, say: TEST then this doesn't work:
#if TEST
Console.WriteLine("Test");
#else
Console.WriteLine("Not Test");
#endif
Is there a way to check these?