コード例 #1
0
ファイル: DthTestServer.cs プロジェクト: akrisiun/dotnet-cli
        public DthTestServer()
        {
            Port = FindFreePort();
            HostId = Guid.NewGuid().ToString();

            _program = new ProjectModelServerCommand(Port, HostId);

            _thread = new Thread(() => { _program.OpenChannel(); }) { IsBackground = true };
            _thread.Start();
        }
コード例 #2
0
ファイル: DthTestServer.cs プロジェクト: schellap/cli
        public DthTestServer()
        {
            Port   = FindFreePort();
            HostId = Guid.NewGuid().ToString();

            _program = new ProjectModelServerCommand(Port, HostId);

            _thread = new Thread(() => { _program.OpenChannel(); })
            {
                IsBackground = true
            };
            _thread.Start();
        }