Currently, in my automated build, I use the devenv.exe to build my solution files:
devenv /build myproject1.sln
Now, I want to create two versions of my application, the normal version, and the light version. The source code for these two versions are the same, it's just that in light version some of the features are disabled, and for this I use #define lite preprocessor directives ( In csproject file, these constants are defined under DefineConstants Property Group).
In MsBuild--or just normal devenv build--is it possible to specify whether the symbol I want should be present in the build? The reason I ask this is because I want to build my sln file first time with the lite preprocessor directives ( for lite version), and the second time, without the lite preprocessor directives ( for full version).