借助WiX v3.6,Burn提供了将两个软件包“捆绑”在一起的功能(由Burn可执行文件驱动).你可以使用.wxs文件做一些有点像:
<Bundle ...> <BootstrapperApplicationRef Id='WixStandardBootstrapperApplication.RtfLicense' /> <Chain> <MsiPackage InstallCondition='NOT VersionNT64' SourceFile='path\to\x86.msi' /> <MsiPackage InstallCondition='VersionNT64' SourceFile='path\to\x64.msi' /> </Chain> </Bundle>
这刚刚开始划分Burn可以做的所有事情,但它展示了如何将两个架构包捆绑到一个安装体验中.