SafeDispatch/Service Configurator/Program.cs
2024-02-22 18:43:59 +02:00

30 lines
717 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace ServiceConfigurator
{
static class Program
{
internal static bool notify = true;
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
if (args.Length > 0)
{
if (args[0] == "-s")
{
notify = false;
}
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}