diff options
author | sr55 <[email protected]> | 2012-03-17 18:49:01 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-03-17 18:49:01 +0000 |
commit | 65ef5bf0ec869d50feadff71739c7d472c4be953 (patch) | |
tree | 7a1dd0bb2155ace22ad4820e3c06ec508423e6dd /win/CS/HandBrakeWPF/HandBrakeWPF.csproj | |
parent | 7686ecbf127a41291a7fe76852f93fe7a6f60fb4 (diff) |
WinGui: (WPF) Add x64 target for HandBrakeWPF
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4509 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/HandBrakeWPF.csproj')
-rw-r--r-- | win/CS/HandBrakeWPF/HandBrakeWPF.csproj | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/HandBrakeWPF.csproj b/win/CS/HandBrakeWPF/HandBrakeWPF.csproj index a65f102d8..c148f6bde 100644 --- a/win/CS/HandBrakeWPF/HandBrakeWPF.csproj +++ b/win/CS/HandBrakeWPF/HandBrakeWPF.csproj @@ -38,6 +38,24 @@ <PropertyGroup>
<ApplicationIcon>handbrakepineapple.ico</ApplicationIcon>
</PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
+ <DebugSymbols>true</DebugSymbols>
+ <OutputPath>bin\x64\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <DebugType>full</DebugType>
+ <PlatformTarget>x64</PlatformTarget>
+ <ErrorReport>prompt</ErrorReport>
+ <CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
+ <CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
+ <OutputPath>bin\x64\Release\</OutputPath>
+ <DefineConstants>TRACE</DefineConstants>
+ <Optimize>true</Optimize>
+ <DebugType>pdbonly</DebugType>
+ <PlatformTarget>x64</PlatformTarget>
+ <ErrorReport>prompt</ErrorReport>
+ </PropertyGroup>
<ItemGroup>
<Reference Include="Caliburn.Micro">
<HintPath>..\libraries\caliburn\Caliburn.Micro.dll</HintPath>
|