Porting Custom Install Actions to Wix

前端 未结 1 835
孤独总比滥情好
孤独总比滥情好 2021-02-08 15:34

I currently have a Visual Studio Deployment project for creating an MSI for my applicaiton, and I\'m porting over to a WiX installer. The VS Installer used a library with Custom

相关标签:
1条回答
  • 2021-02-08 16:21

    The Installer class based custom actions do not integrate well with the Windows Installer. The Visual Studio Setup Projects created a workaround to shoehorn them into an .MSI file but that was never the ideal situation. The WiX toolset provides true support for managed custom actions using the DTF framework.

    I highly encourage you to take a look at the DTF Documentation shortcut provided with the WiX toolset. It has decent walkthroughs and I expect you'll be able to port your code pretty easily plus you'll be able to integrate far more with the Windows Installer.

    0 讨论(0)
提交回复
热议问题