mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-22 17:06:24 -06:00
20 lines
527 B
C#
20 lines
527 B
C#
using WixSharp;
|
|
|
|
namespace Symphony
|
|
{
|
|
public partial class ExitDialog : WixSharp.UI.Forms.ManagedForm, IManagedDialog
|
|
{
|
|
public ExitDialog()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void ExitDialog_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();
|
|
}
|
|
|
|
}
|
|
} |