构建 wixproj 时运行 Paraffin

发布于 2024-11-10 06:02:46 字数 207 浏览 0 评论 0原文

我有一个 WiX 项目,它引入了带有大量支持文件的 WiX 片段。

我正在使用 Paraffin 为片段构建 wsx 文件。目前,每当我更改支持文件文件夹时,我都会手动运行一行批处理文件,以使用带有适当参数的石蜡运行。

相反,我希望石蜡作为构建过程的一部分运行。我猜我需要在 .wixproj 文件中添加一些内容,但我实际上不确定是什么。

我该怎么做?

I've got a WiX project which pulls in a WiX Fragment with a load of supporting files.

I'm using Paraffin to build the wsx file for the fragment. At the moment I manually run a one line batch file to run with paraffin with the appropriate arguments whenever I make a change the supporting files folder.

Instead I would like paraffin to run as part of the build process. I'm guessing I need to add something to inside the .wixproj file, but I'm not actually sure what.

How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忘年祭陌 2024-11-17 06:02:48

找到了解决办法:

  <Target Name="BeforeBuild">
    <Exec Command="paraffin -dir SourceDir -groupname MyGroupId -dirref MyDirId output.wxs"/>

  </Target>

Found a solution:

  <Target Name="BeforeBuild">
    <Exec Command="paraffin -dir SourceDir -groupname MyGroupId -dirref MyDirId output.wxs"/>

  </Target>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文