4

我有用 wix 创建的独立安装项目。我需要一些解决方案来自动更新我的应用程序。我的应用程序应该在启动时检查新版本并自动下载并安装新版本(如果有)。什么是最好的解决方案?谁能给我一些例子?谢谢。

4

1 回答 1

4

If you use Burn as your bootstrapper/chainer (something I definitely recommend when distributing MSI files over the internet) then you can create a custom bootstrapper application that implements the update mechanism. This is how the WiX toolset updates itself. You can see the code in WiX v3.7 (or later) branch in src\Setup\WixBA\UpdateViewModel.cs.

于 2013-03-14T14:28:40.620 回答