OK then.
Though if you are choosing MSI native UI then you are arguably better off with the native bootstrapper too. The two major reasons are:
Though if you are choosing MSI native UI then you are arguably better off with the native bootstrapper too. The two major reasons are:
- It's an MSI standard bootstrapping solution (simplified bootstrapper is a Wix# lab research effort)
- It's just simpler:
var bootstrapper = new Bundle("My Product", new MsiPackage(prerequisiteMsi), new MsiPackage(productMsi) { DisplayInternalUI = true }); bootstrapper.Version = new Version("1.0.0.0"); bootstrapper.UpgradeCode = new Guid("6f330b47-2577-43ad-9095-1861bb25889b"); bootstrapper.AboutUrl = "https://wixsharp.codeplex.com/"; ... bootstrapper.Build();