-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
54 lines (47 loc) · 1.47 KB
/
Program.cs
File metadata and controls
54 lines (47 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System.Threading;
using System.Windows.Forms;
namespace RefreshToggle;
internal static class Program
{
[STAThread]
private static void Main(string[] args)
{
if (args.Length > 0 && string.Equals(args[0], "--cleanup", StringComparison.Ordinal))
{
InstallationManager.RunCleanupMode(args[1..]);
return;
}
using var mutex = new Mutex(true, @"Global\RefreshToggle_SingleInstance", out var createdNew);
if (!createdNew)
{
return;
}
InstallResult installResult;
string? installError = null;
try
{
installResult = InstallationManager.EnsureInstalled();
}
catch (Exception ex)
{
installResult = new InstallResult(false);
installError = $"Could not install to {InstallationManager.InstallDirectory}: {ex.Message}";
}
string? startupMigrationError = null;
if (StartupManager.HasEntry())
{
try
{
StartupManager.Enable();
}
catch (Exception ex)
{
startupMigrationError = $"Could not update startup entry: {ex.Message}";
}
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
using var trayApp = new TrayApp(installResult.InstalledNow, installError, startupMigrationError);
Application.Run();
}
}