2020-09-04 08:02:47 -05:00
|
|
|
using WixSharp;
|
|
|
|
|
|
|
|
namespace Symphony
|
|
|
|
{
|
2020-10-26 07:17:05 -05:00
|
|
|
public partial class ExitDialog : WixSharp.UI.Forms.ManagedForm, IManagedDialog
|
2020-09-04 08:02:47 -05:00
|
|
|
{
|
2020-10-26 07:17:05 -05:00
|
|
|
public ExitDialog()
|
2020-09-04 08:02:47 -05:00
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
|
2020-10-26 07:17:05 -05:00
|
|
|
private void ExitDialog_Load(object sender, System.EventArgs e)
|
2020-09-04 08:02:47 -05:00
|
|
|
{
|
2020-09-04 08:19:15 -05:00
|
|
|
// 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
|
2020-09-04 08:02:47 -05:00
|
|
|
Shell.Exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|