From 5fabace83357c2b19ee941f31b334d17372ee59a Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Mon, 13 Nov 2017 01:35:20 -0500 Subject: [PATCH] Renames Server.Console.Program to Server.Console.Console --- TGS.Server.Console/{Program.cs => Console.cs} | 10 +++++----- TGS.Server.Console/TGS.Server.Console.csproj | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) rename TGS.Server.Console/{Program.cs => Console.cs} (88%) 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 @@ - +