using WixSharp; namespace Symphony { public partial class ExitDlg : WixSharp.UI.Forms.ManagedForm, IManagedDialog { public ExitDlg() { InitializeComponent(); } private void ExitDlg_Load(object sender, System.EventArgs e) { // Exit installation on completion (don't wait for user to confirm) // After installation exits, the app will be auto launched, but that is specified in Symphony.cs Shell.Exit(); } } }