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);
+ }
+ }
+}