using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace JobReportMailService { static class Program { /// /// 해당 애플리케이션의 주 진입점입니다. /// [STAThread] 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()); } } }