Commit 1732654 1 parent e3a97d6 commit 1732654 Copy full SHA for 1732654
File tree 5 files changed +10
-6
lines changed
HandBrake.ApplicationServices
5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 28
28
<OutputPath >bin\x86\Release\</OutputPath >
29
29
<Optimize >true</Optimize >
30
30
<DefineConstants >DEBUG;TRACE</DefineConstants >
31
+ <DebugType >pdbonly</DebugType >
32
+ <DebugSymbols >true</DebugSymbols >
31
33
</PropertyGroup >
32
34
<PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|x64'" >
33
35
<PlatformTarget >x64</PlatformTarget >
37
39
<PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Release|x64'" >
38
40
<PlatformTarget >x64</PlatformTarget >
39
41
<OutputPath >bin\x64\Release\</OutputPath >
40
- <DefineConstants >TRACE</DefineConstants >
42
+ <DefineConstants >DEBUG; TRACE</DefineConstants >
41
43
<Optimize >true</Optimize >
44
+ <DebugType >pdbonly</DebugType >
45
+ <DebugSymbols >true</DebugSymbols >
42
46
</PropertyGroup >
43
47
<ItemGroup >
44
48
<Reference Include =" Caliburn.Micro" >
Original file line number Diff line number Diff line change 48
48
<PlatformTarget >x86</PlatformTarget >
49
49
<OutputPath >bin\x86\Release\</OutputPath >
50
50
<UseVSHostingProcess >false</UseVSHostingProcess >
51
- <DefineConstants >
52
- </DefineConstants >
51
+ <DefineConstants >TRACE;DEBUG</DefineConstants >
53
52
<Optimize >true</Optimize >
54
53
<CodeAnalysisRuleSet >AllRules.ruleset</CodeAnalysisRuleSet >
54
+ <DebugType >pdbonly</DebugType >
55
+ <DebugSymbols >true</DebugSymbols >
55
56
</PropertyGroup >
56
57
<PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|x64'" >
57
58
<PlatformTarget >x64</PlatformTarget >
Original file line number Diff line number Diff line change @@ -132,6 +132,7 @@ Section "Handbrake" SEC01
132
132
File "*.dll"
133
133
File "*.config"
134
134
File "*.xml"
135
+ File "*.pdb"
135
136
136
137
; Copy the standard doc set into the doc folder
137
138
SetOutPath "$INSTDIR\doc"
Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ Section "Handbrake" SEC01
131
131
File "*.dll"
132
132
File "*.config"
133
133
File "*.xml"
134
+ File "*.pdb"
134
135
135
136
; Copy the standard doc set into the doc folder
136
137
SetOutPath "$INSTDIR\doc"
Original file line number Diff line number Diff line change @@ -56,9 +56,6 @@ public static void Main(string[] args)
56
56
return ;
57
57
}
58
58
59
- // Make sure the GUI knows what CLI version it's attached to.
60
- Functions . Main . SetCliVersionData ( ) ;
61
-
62
59
// Check were not running on a screen that's going to cause some funnies to happen.
63
60
Screen scr = Screen . PrimaryScreen ;
64
61
if ( ( scr . Bounds . Width < 1024 ) || ( scr . Bounds . Height < 620 ) )
You can’t perform that action at this time.
0 commit comments