diff --git a/TGS.Server.Console/Program.cs b/TGS.Server.Console/Console.cs similarity index 88% rename from TGS.Server.Console/Program.cs rename to TGS.Server.Console/Console.cs index 980514ebb1..2a065dab9b 100644 --- a/TGS.Server.Console/Program.cs +++ b/TGS.Server.Console/Console.cs @@ -5,19 +5,19 @@ namespace TGS.Server.Console /// /// Console runner for a /// - sealed class Program : ILogger + sealed class Console : ILogger { /// - /// Entry point to the + /// Entry point to the /// /// - static void Main(string[] args) => new Program(args); + static void Main(string[] args) => new Console(args); /// - /// Construct and run a + /// Construct and run a /// /// Command line arguments - Program(string[] args) + Console(string[] args) { System.Console.WriteLine("Starting server..."); var server = new Server(args, this); //no using to avoid including more references diff --git a/TGS.Server.Console/TGS.Server.Console.csproj b/TGS.Server.Console/TGS.Server.Console.csproj index 1fa9654f44..37d49bf3a8 100644 --- a/TGS.Server.Console/TGS.Server.Console.csproj +++ b/TGS.Server.Console/TGS.Server.Console.csproj @@ -57,7 +57,7 @@ - +