pascalabcnet/Debugger.Core/Src/RemotingSinks/TestServer/Program.cs

32 lines
709 B
C#
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
// <version>$Revision: 915 $</version>
// </file>
using System;
using System.Collections.Generic;
using System.Runtime.Remoting;
using System.Threading;
namespace CustomSinks
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Thread.CurrentThread.Name = "Server (STA)";
RemotingConfiguration.Configure("Server.exe.config");
Console.WriteLine("Chat server started. Press ENTER to exit.");
Console.ReadLine();
}
}
}