WIX 热实用程序是否可以与 Visual C++ 一起使用?项目?
我刚刚开始使用 Wix,并希望使用 heat 将我的 Visual C++ 项目的输出提取到源 Wix 文件。这似乎对我的 C# 项目非常有用,但是,每当我在 C++ 项目上运行 heat 时,我都会收到错误:
heat project MyProject.vcproj -pog:Binaries -cg MyGroup -nologo -out MySource.wxs
heat.exe : error HEAT5307 : Build failed.
这是应该有效的还是我做错了什么?谢谢
I am just starting to use Wix and would like to use heat to extract the outputs from my Visual C++ projects to source Wix files. This seems to work great for my C# projects, however, whenever I run heat on a C++ project I get an error:
heat project MyProject.vcproj -pog:Binaries -cg MyGroup -nologo -out MySource.wxs
heat.exe : error HEAT5307 : Build failed.
Is this supposed to work or am I doing something wrong? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Visual Studio 2008 及更早版本中没有。 C++ 项目并不是真正的 MSbuild 项目(只是 vcbuild.exe 周围的 shell 或类似的东西),因此没有对这些项目进行内省。这是相当悲伤的。
有传言说 VC++ 团队正在 Visual Studio 2010 中修复这个问题,所以希望事情能在那里开始工作。
Not in Visual Studio 2008 and earlier. C++ projects are not really MSbuild projects (just a shells around vcbuild.exe or something like that) so there is no introspection into those projects. It's quite sad.
Rumor has it that the VC++ team is fixing this in Visual Studio 2010 so hopefully things will start working there.