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