I have an application C#. This application use a Project "Visual Studio Installer/Setup Project" for the setup. I have to change it for a "Windows Installer XML/Setup Project".
The VS Installer use
- a Custom Action
- a class
public partial class InstallerDB : System.Configuration.Install.Installer. Used to install the database - Maybe something else (I don't really understand how this installer Works"
I created a WiX project. In the product.wxs I added a call to the custom action. But how can I call the project with the class InstallerDB ?
And how can I be sure to do exactly the same setup ?