So far, I have had the following methodology for creating my C ++ projects from the command line (goal: nightly build with jenkins with the same configuration as a regular project):
devenv MySolution.sln /build "Release" /project "MyProject"
or from the express version:
VCExpress MySolution.sln /build "Release" /project "MyProject"
Now I recently got a VC11 express for the desktop and apparently this is not the same executable (I think the equivalent of VCExpress.exe is WDExpress.exe, am I wrong?), This is not the same command line (this something like WDExpress MyProject.vcxproj / Build), and build logs are not output to standard output (they may be available elsewhere).
So, I'm just wondering if I'm missing something?
Maybe this is not WDExpress.exe that should be called?
source share