1234567891011121314151617181920212223 |
- using CommonLang.Property;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Windows.Forms;
- using XmdsServerTest.Server;
- namespace XmdsServerTest
- {
- static class Program
- {
- static void Main(string[] args)
- {
- ReflectionUtil.LoadDlls(new System.IO.DirectoryInfo(Application.StartupPath));
- NodeTestServer server = new NodeTestServer(new System.IO.DirectoryInfo("."));
- server.Start("127.0.0.1", 19999);
- Console.WriteLine("*************************************************");
- Console.WriteLine("* 启动完毕 ");
- Console.WriteLine("*************************************************");
- new NodeTestConsoleCommands().Run();
- }
- }
- }
|