diff --git a/Barotrauma/BarotraumaClient/BarotraumaClient.csproj b/Barotrauma/BarotraumaClient/BarotraumaClient.csproj
index 0b357d5f4..afbfca56d 100644
--- a/Barotrauma/BarotraumaClient/BarotraumaClient.csproj
+++ b/Barotrauma/BarotraumaClient/BarotraumaClient.csproj
@@ -34,6 +34,8 @@
..\BarotraumaShared\Icon.ico
+ true
+ pdbonly
true
..\bin\ReleaseLinux\
TRACE;LINUX;CLIENT
@@ -41,8 +43,11 @@
x86
+ true
+ full
false
..\bin\DebugLinux\
+ TRACE;LINUX;CLIENT;DEBUG
4
x86
diff --git a/Barotrauma/BarotraumaServer/BarotraumaServer.csproj b/Barotrauma/BarotraumaServer/BarotraumaServer.csproj
index 721c2888e..f8c7ec01e 100644
--- a/Barotrauma/BarotraumaServer/BarotraumaServer.csproj
+++ b/Barotrauma/BarotraumaServer/BarotraumaServer.csproj
@@ -33,14 +33,20 @@
..\BarotraumaShared\Icon.ico
- false
+ true
+ pdbonly
+ true
bin\x86\ReleaseLinux
+ TRACE;SERVER
4
x86
+ true
+ full
false
bin\x86\DebugLinux
+ TRACE;SERVER;DEBUG
4
x86
diff --git a/Barotrauma/BarotraumaServer/Source/Program.cs b/Barotrauma/BarotraumaServer/Source/Program.cs
index 1cbe43ace..43b213379 100644
--- a/Barotrauma/BarotraumaServer/Source/Program.cs
+++ b/Barotrauma/BarotraumaServer/Source/Program.cs
@@ -5,14 +5,10 @@ using System.IO;
using System.Text;
using System.Threading;
-#if WINDOWS
-#endif
-
#endregion
namespace Barotrauma
{
-#if WINDOWS || LINUX
///
/// The main class.
///
@@ -86,5 +82,4 @@ namespace Barotrauma
sw.Close();
}
}
-#endif
}