I'm curious if there's "default conditional compilation symbols" that are basically automatically defined by the C# compiler. For instance, the compiler framework version, or anything.
I did a cursory check and did not see any defaults.
I'm curious if there's "default conditional compilation symbols" that are basically automatically defined by the C# compiler. For instance, the compiler framework version, or anything.
I did a cursory check and did not see any defaults.
In project build options You can enable DEBUG and TRACE constants (DEBUG is enabled/disabled based on Active Configuration by default). As far as I know, those are only default constants.
From this question that asked about a similar issue but asked the question in a different way
There aren't any built in, but you can supply your own.