I am trying to create a new constant, so I can use it the same way as the DEBUG constant:
#if(DEBUG)
public void LoadProcedure ()
#else
private void LoadProcedure ()
#endif
This works for Debug / Release configurations in Visual Studio 2008, but I need the TDD or TESTING constant. I created a new build configuration called Test. Now the question is how I define it.
There must be some command line parameter :: -).
Thanks in advance :: -).
Axonn source
share