How to create the inf file for a smart device cab project from command line?

梦想的初衷 提交于 2019-12-03 14:00:45
Mau

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.

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!