views:

87

answers:

1

The bld file has the sln file specified, but what does it call to build it? MSDev? MSBuild? other?

I want to add some command line params, but I am not sure which executable it calls for unmanaged C++ solutions.

+1  A: 

It depends. For Visual Studio 2002/2003, it always calls devenv.com. For Visual Studio 2005 and up, it calls msbuild.exe by default, or devenv or vcbuild if specified in the Override field on the Options tab.

http://www.kinook.com/VisBuildPro/Manual/vsnetoptionstab.htm

Kyle Alons