Program.cs 775 B

1234567891011121314151617181920212223
  1. using CommonLang.Property;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Windows.Forms;
  6. using XmdsServerTest.Server;
  7. namespace XmdsServerTest
  8. {
  9. static class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. ReflectionUtil.LoadDlls(new System.IO.DirectoryInfo(Application.StartupPath));
  14. NodeTestServer server = new NodeTestServer(new System.IO.DirectoryInfo("."));
  15. server.Start("127.0.0.1", 19999);
  16. Console.WriteLine("*************************************************");
  17. Console.WriteLine("* 启动完毕 ");
  18. Console.WriteLine("*************************************************");
  19. new NodeTestConsoleCommands().Run();
  20. }
  21. }
  22. }