SymphonyElectron/installer/win/WixSharpInstaller/ExitDlg.cs
2020-09-04 15:19:15 +02:00

20 lines
518 B
C#

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();
}
}
}