We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cef96e commit 0322e32Copy full SHA for 0322e32
Program.cs
@@ -9,6 +9,13 @@ internal static partial class Program
9
/// </summary>
10
static void Main()
11
{
12
+ bool checkProcess = Process.GetProcessesByName(Path.GetFileNameWithoutExtension(System.Reflection.Assembly.GetEntryAssembly()!.Location)).Length > 1;
13
+
14
+ if (checkProcess)
15
+ {
16
+ return;
17
+ }
18
19
ApplicationConfiguration.Initialize();
20
Application.Run(new Yeeter());
21
}
0 commit comments