- Refactored code. - Fixed bug: "#1 Welcome message shows despite VMware not being installed"
14 lines
252 B
C#
14 lines
252 B
C#
using System;
|
|
|
|
namespace VMwareLauncher
|
|
{
|
|
public static class ApplicationControl
|
|
{
|
|
public static void Shutdown(int exitCode)
|
|
{
|
|
Startup.trayIcon.Destroy();
|
|
Environment.Exit(exitCode);
|
|
}
|
|
}
|
|
}
|