static void Main(string[] args) { if (args.Length == 0) { MessageBox.Show("Invalid argument length."); return; } log4net.GlobalContext.Properties["ImgName"] = args[0]; XmlConfigurator.ConfigureAndWatch(new FileInfo(Path.Combine(Environment.CurrentDirectory, "..", "DataSvr", "logging-config-game.xml"))); IMGFilename = args[0]; UnhandledExceptionHandler.Set(args, IMGFilename, LogFile); MasterThread.Load(IMGFilename); LogFile = new Logfile(IMGFilename); var mainForm = new GameMainForm(); MainForm = mainForm; mainForm.InitializeServer(); #if FORMS Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(mainForm); #else mainForm.ReadInput(); #endif }
static void Main(string[] args) { if (args.Length != 1) { MessageBox.Show("Invalid argument length."); return; } log4net.GlobalContext.Properties["ImgName"] = args[0]; XmlConfigurator.ConfigureAndWatch(new FileInfo(Path.Combine(Environment.CurrentDirectory, "..", "DataSvr", "logging-config-shop.xml"))); IMGFilename = args[0]; LogFile = new Common.Logfile(IMGFilename); UnhandledExceptionHandler.Set(args, IMGFilename, LogFile); MasterThread.Load(IMGFilename); Pinger.Init(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(MainForm = new frmMain()); }