diff options
author | sr55 <[email protected]> | 2019-12-18 20:13:51 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2019-12-18 20:13:51 +0000 |
commit | 090d1abf4eaf4ac78c3e886fc07a63f89730cd53 (patch) | |
tree | 0c5ea1f31b31ef8e2627ed3eb5391f1c720b684d /win/CS/HandBrakeWPF | |
parent | 5cee86df42d2c9f0de2d90f2dfcc42a1b3e8d6e6 (diff) |
WinGui: Fix a few issues with the build system post format changes.
Diffstat (limited to 'win/CS/HandBrakeWPF')
-rw-r--r-- | win/CS/HandBrakeWPF/HandBrakeWPF.csproj | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/HandBrakeWPF.csproj b/win/CS/HandBrakeWPF/HandBrakeWPF.csproj index 1a1486ca4..280ecf949 100644 --- a/win/CS/HandBrakeWPF/HandBrakeWPF.csproj +++ b/win/CS/HandBrakeWPF/HandBrakeWPF.csproj @@ -18,17 +18,19 @@ <ApplicationIcon>handbrakepineapple.ico</ApplicationIcon>
<StartupObject />
<AssemblyName>HandBrake</AssemblyName>
+ <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
+ <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
+ <RuntimeIdentifiers>win7-x64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<PlatformTarget>x64</PlatformTarget>
<OutputPath>bin\x64\Debug</OutputPath>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <PlatformTarget>x64</PlatformTarget>
<OutputPath>bin\x64\Release</OutputPath>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
|