A complete WiX 3.6 bundle example bootstrapping a .NET 4 Client Profile

醉酒当歌 提交于 2019-11-30 06:27:34

Heath Stewart's Introducing Managed Bootstrapper Applications provides a basic example in his blog.

BryanJ

You need to create a separate WiX bootstrapper project. See Building Installation Package Bundles in the WiX 3.6 documentation.

Fetchez la vache

Once you have your bootstrapper, all you need to do is:

  1. Add a reference to the file WixNetFxExtension.dll into your bootstrapper / managed bootstrapper application project.

  2. Add the following as the first item in your chain.

    <PackageGroupRef Id="NetFx40Web"/>
    

That's it. Further information and options are in the WixNetfxExtension documentation.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!