From: sr55 Date: Fri, 23 Mar 2012 23:48:23 +0000 (+0000) Subject: WinGui: Turn Full debug on for the Windows GUI, and include pdb's in the nightly... X-Git-Tag: 0.9.6.1~52 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41ef2aa0824aacb498753d26cdb419da4d7342f0;p=handbrake WinGui: Turn Full debug on for the Windows GUI, and include pdb's in the nightly builds. git-svn-id: svn://svn.handbrake.fr/HandBrake/branches/0.9.x@4530 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/win/CS/HandBrake.ApplicationServices/HandBrake.ApplicationServices.csproj b/win/CS/HandBrake.ApplicationServices/HandBrake.ApplicationServices.csproj index ff6f8cd4b..0d49fce73 100644 --- a/win/CS/HandBrake.ApplicationServices/HandBrake.ApplicationServices.csproj +++ b/win/CS/HandBrake.ApplicationServices/HandBrake.ApplicationServices.csproj @@ -28,6 +28,8 @@ bin\x86\Release\ true DEBUG;TRACE + full + true x64 @@ -37,8 +39,10 @@ x64 bin\x64\Release\ - TRACE + DEBUG;TRACE true + full + true diff --git a/win/CS/HandBrakeCS.csproj b/win/CS/HandBrakeCS.csproj index 117881d89..79bb0bccf 100644 --- a/win/CS/HandBrakeCS.csproj +++ b/win/CS/HandBrakeCS.csproj @@ -48,10 +48,11 @@ x86 bin\x86\Release\ false - - + TRACE;DEBUG true AllRules.ruleset + full + true x64 @@ -62,7 +63,9 @@ x64 bin\x64\Release\ true - TRACE + DEBUG;TRACE + full + true diff --git a/win/CS/Installer/MakeNightly.nsi.tmpl b/win/CS/Installer/MakeNightly.nsi.tmpl index c1847c15a..ab09c1459 100644 --- a/win/CS/Installer/MakeNightly.nsi.tmpl +++ b/win/CS/Installer/MakeNightly.nsi.tmpl @@ -132,6 +132,7 @@ Section "Handbrake" SEC01 File "*.dll" File "*.config" File "*.xml" + File "*.pdb" ; Copy the standard doc set into the doc folder SetOutPath "$INSTDIR\doc" diff --git a/win/CS/Installer/MakeNightly64.nsi.tmpl b/win/CS/Installer/MakeNightly64.nsi.tmpl index 787465936..15c35d248 100644 --- a/win/CS/Installer/MakeNightly64.nsi.tmpl +++ b/win/CS/Installer/MakeNightly64.nsi.tmpl @@ -131,6 +131,7 @@ Section "Handbrake" SEC01 File "*.dll" File "*.config" File "*.xml" + File "*.pdb" ; Copy the standard doc set into the doc folder SetOutPath "$INSTDIR\doc" diff --git a/win/CS/Program.cs b/win/CS/Program.cs index ac35ed952..48d2f7562 100644 --- a/win/CS/Program.cs +++ b/win/CS/Program.cs @@ -56,9 +56,6 @@ namespace Handbrake return; } - // Make sure the GUI knows what CLI version it's attached to. - Functions.Main.SetCliVersionData(); - // Check were not running on a screen that's going to cause some funnies to happen. Screen scr = Screen.PrimaryScreen; if ((scr.Bounds.Width < 1024) || (scr.Bounds.Height < 620))