[VMware Launcher 2.0.9.5]

- Refactored code.
- Fixed bug: "#1 Welcome message shows despite VMware not being installed"
This commit is contained in:
2021-03-26 20:20:46 +00:00
parent 1cbdbccf77
commit 6d7fec03b4
10 changed files with 79 additions and 83 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
namespace VMwareLauncher
{
public static class ApplicationControl
{
public static void Shutdown(int exitCode)
{
Startup.trayIcon.Destroy();
Environment.Exit(exitCode);
}
}
}