From 559367ee559b5e7dbd1a2676e89fd539fc053788 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 22 Jan 2020 20:17:32 +0100 Subject: [PATCH] Content.{Client,Server} are now Exes that can be ran. --- Content.Client/Content.Client.csproj | 22 +++++++--------------- Content.Client/Program.cs | 12 ++++++++++++ Content.Server/Content.Server.csproj | 17 +++++------------ Content.Server/Program.cs | 12 ++++++++++++ 4 files changed, 36 insertions(+), 27 deletions(-) create mode 100644 Content.Client/Program.cs create mode 100644 Content.Server/Program.cs diff --git a/Content.Client/Content.Client.csproj b/Content.Client/Content.Client.csproj index 075388f063..e8ecf7a10c 100644 --- a/Content.Client/Content.Client.csproj +++ b/Content.Client/Content.Client.csproj @@ -8,6 +8,7 @@ x64 false ..\bin\Content.Client\ + Exe @@ -19,21 +20,12 @@ - - false - - - false - - - false - - - false - + + + + - - - + + diff --git a/Content.Client/Program.cs b/Content.Client/Program.cs new file mode 100644 index 0000000000..f48c1e73c3 --- /dev/null +++ b/Content.Client/Program.cs @@ -0,0 +1,12 @@ +using Robust.Client; + +namespace Content.Client +{ + internal static class Program + { + public static void Main(string[] args) + { + ContentStart.Start(args); + } + } +} diff --git a/Content.Server/Content.Server.csproj b/Content.Server/Content.Server.csproj index cf1fdc876c..ab6085d2fe 100644 --- a/Content.Server/Content.Server.csproj +++ b/Content.Server/Content.Server.csproj @@ -9,6 +9,7 @@ false ..\bin\Content.Server\ true + Exe @@ -17,18 +18,10 @@ - - false - - - false - - - false - - - false - + + + + diff --git a/Content.Server/Program.cs b/Content.Server/Program.cs new file mode 100644 index 0000000000..277ef6938b --- /dev/null +++ b/Content.Server/Program.cs @@ -0,0 +1,12 @@ +using Robust.Server; + +namespace Content.Server +{ + internal static class Program + { + public static void Main(string[] args) + { + ContentStart.Start(args); + } + } +}