From cd508d55b96a6cc9c7037340e71c639cf98d63bb Mon Sep 17 00:00:00 2001 From: icedream Date: Mon, 12 Jan 2015 05:19:51 +0100 Subject: [PATCH] Fix issue with DebugType property. --- src/updater/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/updater/Program.cs b/src/updater/Program.cs index f1a1747..19be388 100644 --- a/src/updater/Program.cs +++ b/src/updater/Program.cs @@ -202,7 +202,7 @@ namespace CitizenMP.Server.Installer { {"Configuration", "Release"}, {"Platform", "Any CPU"}, - {"DebugType", "None"}, + {"DebugType", IsWin32() ? "None" : "pdbonly" }, {"DebugSymbols", false.ToString()}, {"OutputPath", binOutputDirectory.FullName}, {"AllowedReferenceRelatedFileExtensions", "\".mdb\"=\"\";\".pdb\"=\"\";\".xml\"=\"\""}