Application.Exit might not exit if there is a child process running. Environment.Exit(0) do though.

This commit is contained in:
IceStormNG
2024-01-13 11:27:04 +01:00
parent b006a11dcf
commit acf52c2edd

View File

@@ -139,7 +139,7 @@ namespace GHelper.AutoUpdate
Logger.WriteLine(ex.Message);
}
Application.Exit();
Environment.Exit(0);
}
}