views:

2143

answers:

3

I am trying to get my continuous integration to create build the smart device cab project from within msbuild on the command line. Everything that I have found says to use the inf file (with cabwiz) created when you build the project from within visual studio. Is there a way to create the inf using the .vddproj file so that I can then use it with cabwiz.exe?

A: 

Are you asking how to create the cab file or how to include it in your project? You could create the inf then add the command line to the post build event.

Bobby Cannon
A: 

How about adding a "Smart Device CAB Project" to your solution (available in Visual Studio 2005 and 2008)? These kind of projects build the .inf file from the output of the other projects in the solution and spawn "cabwiz.exe" to generate your final cab.

I personally use NAnt instead of MSBuild, and prefer to manually edit my inf file (doesn't change that often), but the CAB project seem to be the way to go for a solution that uses MSBuild.

PS: be careful if your cab needs to set a registry dword to -1 (0xffffffff): cabwiz is known to have a nasty bug when it comes to this.

PS2: also note this other post.

Mau