Quantcast
Channel: wixsharp Discussions Rss Feed
Viewing all articles
Browse latest Browse all 1354

New Post: Simplified Bootstrapper & Managed UI

$
0
0
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:
  1. It's an MSI standard bootstrapping solution (simplified bootstrapper is a Wix# lab research effort)
  2. 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();

Viewing all articles
Browse latest Browse all 1354

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>