c# - Porting Custom Install Actions to Wix -
i have visual studio deployment project creating msi applicaiton, , i'm porting on wix installer. vs installer used library custom install actions inherited system.configuration.install.installer, e.g.:
[runinstaller(true)] public partial class mycustominstaller: installer { }
how these equate wix actions? figure in general, wix allows run custom actions after install. these executables? in case, custom install actions have classes in dll, not exe. how can execute these wix configuration?
the installer
class based custom actions not integrate windows installer. visual studio setup projects created workaround shoehorn them .msi file never ideal situation. wix toolset provides true support managed custom actions using dtf
framework.
i highly encourage take @ dtf documentation
shortcut provided wix toolset. has decent walkthroughs , expect you'll able port code pretty plus you'll able integrate far more windows installer.
Comments
Post a Comment