]> granicus.if.org Git - handbrake/commitdiff
WinGui: Turn Full debug on for the Windows GUI, and include pdb's in the nightly...
authorsr55 <sr55.hb@outlook.com>
Fri, 23 Mar 2012 23:48:23 +0000 (23:48 +0000)
committersr55 <sr55.hb@outlook.com>
Fri, 23 Mar 2012 23:48:23 +0000 (23:48 +0000)
git-svn-id: svn://svn.handbrake.fr/HandBrake/branches/0.9.x@4530 b64f7644-9d1e-0410-96f1-a4d463321fa5

win/CS/HandBrake.ApplicationServices/HandBrake.ApplicationServices.csproj
win/CS/HandBrakeCS.csproj
win/CS/Installer/MakeNightly.nsi.tmpl
win/CS/Installer/MakeNightly64.nsi.tmpl
win/CS/Program.cs

index ff6f8cd4b62733402561deec6e52eaa9c3e1f82e..0d49fce736ee0ed993248a67c8d21f2ce67a076a 100644 (file)
@@ -28,6 +28,8 @@
     <OutputPath>bin\x86\Release\</OutputPath>\r
     <Optimize>true</Optimize>\r
     <DefineConstants>DEBUG;TRACE</DefineConstants>\r
+    <DebugType>full</DebugType>\r
+    <DebugSymbols>true</DebugSymbols>\r
   </PropertyGroup>\r
   <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">\r
     <PlatformTarget>x64</PlatformTarget>\r
   <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">\r
     <PlatformTarget>x64</PlatformTarget>\r
     <OutputPath>bin\x64\Release\</OutputPath>\r
-    <DefineConstants>TRACE</DefineConstants>\r
+    <DefineConstants>DEBUG;TRACE</DefineConstants>\r
     <Optimize>true</Optimize>\r
+    <DebugType>full</DebugType>\r
+    <DebugSymbols>true</DebugSymbols>\r
   </PropertyGroup>\r
   <ItemGroup>\r
     <Reference Include="Castle.Core">\r
index 117881d89667805c305c253d78d7fdd28667e201..79bb0bccfcc595437839dffd5832ac746e2119bd 100644 (file)
     <PlatformTarget>x86</PlatformTarget>\r
     <OutputPath>bin\x86\Release\</OutputPath>\r
     <UseVSHostingProcess>false</UseVSHostingProcess>\r
-    <DefineConstants>\r
-    </DefineConstants>\r
+    <DefineConstants>TRACE;DEBUG</DefineConstants>\r
     <Optimize>true</Optimize>\r
     <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>\r
+    <DebugType>full</DebugType>\r
+    <DebugSymbols>true</DebugSymbols>\r
   </PropertyGroup>\r
   <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">\r
     <PlatformTarget>x64</PlatformTarget>\r
@@ -62,7 +63,9 @@
     <PlatformTarget>x64</PlatformTarget>\r
     <OutputPath>bin\x64\Release\</OutputPath>\r
     <Optimize>true</Optimize>\r
-    <DefineConstants>TRACE</DefineConstants>\r
+    <DefineConstants>DEBUG;TRACE</DefineConstants>\r
+    <DebugType>full</DebugType>\r
+    <DebugSymbols>true</DebugSymbols>\r
   </PropertyGroup>\r
   <ItemGroup>\r
     <Reference Include="Growl.Connector, Version=2.0.0.0, Culture=neutral, PublicKeyToken=980c2339411be384, processorArchitecture=x86">\r
index c1847c15afeab72a205a84543946e9d30018cf67..ab09c14597f8551b7ac871991b158dae5b2e3896 100644 (file)
@@ -132,6 +132,7 @@ Section "Handbrake" SEC01
   File "*.dll"\r
   File "*.config"\r
   File "*.xml"\r
+  File "*.pdb"\r
 \r
   ; Copy the standard doc set into the doc folder\r
   SetOutPath "$INSTDIR\doc"\r
index 787465936ed33ad7341b942a5e45cb6b8fb88c85..15c35d24859f5dfff0b73af4f4544c0178385026 100644 (file)
@@ -131,6 +131,7 @@ Section "Handbrake" SEC01
   File "*.dll"\r
   File "*.config"\r
   File "*.xml"\r
+  File "*.pdb"\r
 \r
   ; Copy the standard doc set into the doc folder\r
   SetOutPath "$INSTDIR\doc"\r
index ac35ed95208cf4e4c947f0e451dd437dd2fb1283..48d2f756289c3135e3b74123560218ae8c524108 100644 (file)
@@ -56,9 +56,6 @@ namespace Handbrake
                 return;\r
             }\r
 \r
-            // Make sure the GUI knows what CLI version it's attached to.\r
-            Functions.Main.SetCliVersionData();\r
-\r
             // Check were not running on a screen that's going to cause some funnies to happen.\r
             Screen scr = Screen.PrimaryScreen;\r
             if ((scr.Bounds.Width < 1024) || (scr.Bounds.Height < 620))\r