I am trying to split out my wix file into two separate files. With everything that exists under my <UI> </UI> tag living in this secondary file.
I have googled this quite a bit but I don’t seem to be getting any conclusive results.
Has anyone done this successfully?
In your Wix project add the reference to the WixUIExtension
In your Product.wxs (Main Install file) add a line like this
Add the UserInterface.wxs to your project solution and customize the UI of your MSI:
The complete sample of this code can be found at this answer
Look at this link, explains how to create Custom Dialogs
Good luck!