编写WPF Wix安装程序
我已经使用WIX编写了用于产品的安装程序,该安装程序使用:
I have written an installer using WIX for a product, which uses:
- 自定义扩展
- 自定义操作
- 自定义的ui对话框
等
我注意到Microsoft Office Installer使用WPF,并且在徘徊如何创建这些自定义外观的安装程序?有谁知道我会怎么做,我似乎找不到任何有关此信息或示例的信息.
I noticed Microsoft Office Installer uses WPF and was wandering how I would go about creating these custom looking installers? does anyone know how i would go about this, I cant seem to find any information on it or examples.
有人告诉我Wix Burn可以做我想做的事,但我找不到任何例子.
I have been told Wix Burn can do what I want but I can't find any examples.
可从 http://wixtoolset下载WiX最新(每周)发行版源代码. org/releases ,然后查看位于 src \ Setup \ WixBA 中的项目.您编写的WPF将是引用WiX引导程序引擎(Burn)的引导程序UI.
Download the WiX latest (weekly) release source code at http://wixtoolset.org/releases and look at the project located in src\Setup\WixBA. The WPF you write will be the bootstrapper UI which references the WiX bootstrapper engine (Burn).
我还创建了一个最小的示例,我在此处上写了博客.请注意,这是一个入门的基本示例.使用WiX源作为示例会更好,因为它既完整又健壮.
I also created a minimal example that I blogged about here. Please note that it is a bare bones example to get someone started. Using the WiX source as an example is better because it's complete and robust.