WiX 重复动态可配置构建?
我在 VS 2010 中有一个 .wixproj,它可以按照我需要的方式生成 MSI(在预构建事件中使用热量进行收获)。现在我需要分发同一事物的 3 个版本,只需要在 app.config 设置、输出 MSI 名称以及一些辅助 .wxs 文件中定义的一些对话框内容上有所不同。
我正在考虑创建一个控制台应用程序,该应用程序将接受参数并修改 .wixproj 和 .wxs 以及 app.config 文件,然后启动 MSBuild,但这似乎需要大量工作。
使用 WiX 作为构建工厂以便我可以让它生成许多定制的 MSI 安装程序的更好方法是什么?
谢谢。
I have a .wixproj in VS 2010 that makes a MSI just the way I need it (using heat for harvesting in the pre build event). Now I need to distribute 3 versions of the same thing, that only need to differ in app.config settings, output MSI name, and some dialog stuff defined in some secondary .wxs files.
I was thinking about creating a console app that would take parameters and modify the .wixproj and .wxs and app.config files and then kick off MSBuild, but that seems like a lot of work.
What would be a better way to use WiX as a build factory so I can have it generate many customized MSI installers?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WiX 预处理器 是您的朋友。使用它的值和条件语句将帮助您创建“通用”源,它将根据您传入的内容输出各种包。
The WiX Preprocessor is your friend here. Using its values and conditional statements will help you to make "universal" sources, which will output various packages based on what you pass in.