This commit is contained in:
chi
2022-05-21 23:06:42 +09:00
parent 4b378f728e
commit a2a1e904c2
14 changed files with 8666 additions and 346 deletions

View File

@@ -12,10 +12,16 @@ namespace JobReportMailService
/// 해당 애플리케이션의 주 진입점입니다.
/// </summary>
[STAThread]
static void Main()
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
if (args != null && args.Length == 1 && args[0] == "DEBUG")
Pub.debugmode = true;
else
Pub.debugmode = false;
Application.Run(new MDIParent1());
}
}