PDA

View Full Version : batch build with VS .Net


ChristianH
05-22-2007, 10:07 AM
Hi,

what must I to do, that "Make VS .Net" makes a "batch build". The solution contain more than one independend project.

Regards

Christian

kinook
05-22-2007, 10:53 AM
Nothing. If a multi-project .sln file is specified in the Filename field, all projects in the solution that are configured to be built in the VS configuration manager (Build | Configuration Manager, Build checkbox column) for the specified solution configuration(s) will be built.
http://www.visualbuild.com/Manual/vsnetprojectsolutiontab.htm

http://www.kinook.com/Forum/showthread.php?threadid=1609

ChristianH
05-23-2007, 02:48 AM
Hi,

thanks for your answer but it still doesnot work like "batch build".
I allway got the error message blablabla.tlb not found.
All projects are marked in the configuration manager and I also tried your script.

Regards

Christian

kinook
05-23-2007, 07:11 AM
You may need to define project dependencies within the solution (Project | Project Dependencies) to ensure proper build order when building from the command-line.

Otherwise, check the 'Display command-line...' checkbox on the Options tab, rebuild the step, then copy/paste the devenv command-line from the build output to a Command Prompt and run it from there. If the problem occurs outside of VBP, you'll need to open a support incident with MS. Otherwise, we'll need a reproducible case to investigate further, including:
1) The info from Help | About | Install Info
2) The .bld file used to build
3) A build log file
4) A .sln file and project files (no source code files)

Thanks.