I have created an installer for my application using WIX. In addition, I have a setup.exe file which I've created using the VS Booststrapepr that verifies .NET is installed on the machine and installs it if it doesn't.
So now I'm stuck with two files - Setup.exe and the MSI. I would like to have a single file which checks for prerequisites (just like Setup.exe does) and then runs the MSI (not silently, the MSI UI must be presented).
How can I achieve that?
Thanks!