12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using CommonLang.Property;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using System.Web.Helpers;
- using System.Windows.Forms;
- using XmdsCommonServer.Message;
- using XmdsServerTest;
- using XmdsServerTest.Server;
- namespace XmdsServerTestLauncher
- {
- static class Program
- {
-
-
-
-
- static void Main()
- {
- Console.WriteLine("*************************************************");
-
- NodeTestServer server = new NodeTestServer(new System.IO.DirectoryInfo("."));
- server.Start("127.0.0.1", 19999);
- Console.WriteLine("*************************************************");
- Console.WriteLine("* 启动完毕 ");
- Console.WriteLine("*************************************************");
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new FormTest(server));
- }
- }
- }
|