Skip to content

Commit 9532ed2

Browse files
committed
Revert "WinGui: Switch to SDK style cproj files. Switch to PackageReferences for NuGet Packages."
This reverts commit 7cf0e78.
1 parent 2817b70 commit 9532ed2

12 files changed

+1009
-200
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,204 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
23
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
6+
<ProjectGuid>{087A2BA8-BAC2-4577-A46F-07FF9D420016}</ProjectGuid>
37
<OutputType>Library</OutputType>
4-
<TargetFramework>net471</TargetFramework>
5-
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
6-
<ApplicationIcon />
7-
<StartupObject />
8-
<Platforms>x64</Platforms>
9-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
10-
<Authors>The HandBrake Team</Authors>
11-
<PackageProjectUrl>https://handbrake.fr</PackageProjectUrl>
12-
<PackageLicenseExpression></PackageLicenseExpression>
13-
<PackageIconUrl>https://handbrake.fr/img/logo.png</PackageIconUrl>
14-
<RepositoryUrl>https://github.com/HandBrake/HandBrake.git</RepositoryUrl>
15-
<RepositoryType>Git</RepositoryType>
16-
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
17-
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
18-
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
19-
<PackageLicenseFile>License.txt</PackageLicenseFile>
20-
<Version>1.3.0</Version>
21-
<PackageReleaseNotes>Releasese notes for HandBrake are available on GitHub.</PackageReleaseNotes>
22-
<Description>HandBrake is a GPL-licensed, multiplatform, multithreaded video transcoder.
23-
This package is a wrapper around hb.dll
24-
25-
hb.dll is not provided and must be built separately.</Description>
26-
<Copyright>Copyright © 2003-2019 HandBrake Team</Copyright>
27-
<PackageTags>Video Transcoder</PackageTags>
8+
<AppDesignerFolder>Properties</AppDesignerFolder>
9+
<RootNamespace>HandBrake.Interop</RootNamespace>
10+
<AssemblyName>HandBrake.Interop</AssemblyName>
11+
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<FileUpgradeFlags>
14+
</FileUpgradeFlags>
15+
<UpgradeBackupLocation />
16+
<TargetFrameworkProfile>
17+
</TargetFrameworkProfile>
2818
</PropertyGroup>
29-
30-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
19+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
3120
<PlatformTarget>x64</PlatformTarget>
32-
<OutputPath>bin\Debug</OutputPath>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DefineConstants>TRACE;DEBUG</DefineConstants>
23+
<UseVSHostingProcess>true</UseVSHostingProcess>
24+
<Prefer32Bit>false</Prefer32Bit>
25+
<CodeAnalysisRuleSet>..\HandBrake.ruleset</CodeAnalysisRuleSet>
26+
<NoWarn>0649</NoWarn>
3327
</PropertyGroup>
34-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
35-
<OutputPath>bin\Release</OutputPath>
28+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
29+
<PlatformTarget>x64</PlatformTarget>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>DEBUG;TRACE</DefineConstants>
32+
<Optimize>true</Optimize>
33+
<DebugType>pdbonly</DebugType>
34+
<DebugSymbols>true</DebugSymbols>
35+
<Prefer32Bit>false</Prefer32Bit>
3636
</PropertyGroup>
37-
3837
<ItemGroup>
39-
<PackageReference Include="Newtonsoft.Json">
40-
<Version>12.0.2</Version>
41-
</PackageReference>
38+
<Reference Include="GongSolutions.WPF.DragDrop, Version=2.0.0.0, Culture=neutral, PublicKeyToken=91f1945125b7a587, processorArchitecture=MSIL">
39+
<HintPath>..\packages\gong-wpf-dragdrop.2.0.1\lib\net47\GongSolutions.WPF.DragDrop.dll</HintPath>
40+
</Reference>
41+
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
42+
<HintPath>..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
43+
</Reference>
44+
<Reference Include="System" />
45+
<Reference Include="System.Core">
46+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
47+
</Reference>
48+
<Reference Include="System.Xml.Linq">
49+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
50+
</Reference>
51+
<Reference Include="System.Data" />
52+
<Reference Include="System.Xml" />
53+
</ItemGroup>
54+
<ItemGroup>
55+
<Compile Include="Attributes\DisplayName.cs" />
56+
<Compile Include="Attributes\DisplayNameLocalized.cs" />
57+
<Compile Include="Attributes\ShortName.cs" />
58+
<Compile Include="Interop\EventArgs\EncodeCompletedEventArgs.cs" />
59+
<Compile Include="Interop\EventArgs\EncodeProgressEventArgs.cs" />
60+
<Compile Include="Interop\EventArgs\MessageLoggedEventArgs.cs" />
61+
<Compile Include="Interop\EventArgs\ScanProgressEventArgs.cs" />
62+
<Compile Include="Interop\HandBrakeEncoderHelpers.cs" />
63+
<Compile Include="Interop\HandBrakeFilterHelpers.cs" />
64+
<Compile Include="Interop\HandBrakeInstance.cs" />
65+
<Compile Include="Interop\HandBrakeLanguagesHelper.cs" />
66+
<Compile Include="Interop\HandBrakePresetService.cs" />
67+
<Compile Include="Interop\HandBrakeUnitConversionHelpers.cs" />
68+
<Compile Include="Interop\HandBrakeUtils.cs" />
69+
<Compile Include="Interop\HbLib\HBDelegates.cs" />
70+
<Compile Include="Interop\HbLib\HbFunctions.cs" />
71+
<Compile Include="Interop\HbLib\hb_anamorphic_mode_t.cs" />
72+
<Compile Include="Interop\HbLib\hb_container_s.cs" />
73+
<Compile Include="Interop\HbLib\hb_encoder_s.cs" />
74+
<Compile Include="Interop\HbLib\hb_error_code.cs" />
75+
<Compile Include="Interop\HbLib\hb_filter_ids.cs" />
76+
<Compile Include="Interop\HbLib\hb_geometry.cs" />
77+
<Compile Include="Interop\HbLib\hb_image_s.cs" />
78+
<Compile Include="Interop\HbLib\hb_mixdown_s.cs" />
79+
<Compile Include="Interop\HbLib\hb_rate_s.cs" />
80+
<Compile Include="Interop\HbLib\hb_subtitle.cs" />
81+
<Compile Include="Interop\HbLib\iso639_lang_t.cs" />
82+
<Compile Include="Interop\HbLib\NativeConstants.cs" />
83+
<Compile Include="Interop\Helpers\InteropUtilities.cs" />
84+
<Compile Include="Interop\Helpers\NativeList.cs" />
85+
<Compile Include="Interop\Helpers\Utilities.cs" />
86+
<Compile Include="Interop\Interfaces\IEncodeInstance.cs" />
87+
<Compile Include="Interop\Interfaces\IHandBrakeInstance.cs" />
88+
<Compile Include="Interop\Json\Anamorphic\AnamorphicGeometry.cs" />
89+
<Compile Include="Interop\Json\Anamorphic\DestSettings.cs" />
90+
<Compile Include="Interop\Json\Encode\QSV.cs" />
91+
<Compile Include="Interop\Json\Filters\PresetTune.cs" />
92+
<Compile Include="Interop\Json\Presets\AudioList.cs" />
93+
<Compile Include="Interop\Json\Presets\HBPreset.cs" />
94+
<Compile Include="Interop\Json\Presets\PresetCategory.cs" />
95+
<Compile Include="Interop\Json\Presets\PresetTransportContainer.cs" />
96+
<Compile Include="Interop\Json\Queue\Task.cs" />
97+
<Compile Include="Interop\Json\Scan\AudioAttributes.cs" />
98+
<Compile Include="Interop\Json\Scan\SubtitleAttributes.cs" />
99+
<Compile Include="Interop\Json\Shared\PAR.cs" />
100+
<Compile Include="Interop\Json\Encode\Audio.cs" />
101+
<Compile Include="Interop\Json\Encode\AudioTrack.cs" />
102+
<Compile Include="Interop\Json\Encode\Chapter.cs" />
103+
<Compile Include="Interop\Json\Encode\Destination.cs" />
104+
<Compile Include="Interop\Json\Encode\Filters.cs" />
105+
<Compile Include="Interop\Json\Encode\Filter.cs" />
106+
<Compile Include="Interop\Json\Encode\JsonEncodeObject.cs" />
107+
<Compile Include="Interop\Json\Encode\Metadata.cs" />
108+
<Compile Include="Interop\Json\Encode\Mp4Options.cs" />
109+
<Compile Include="Interop\Json\Encode\Range.cs" />
110+
<Compile Include="Interop\Json\Encode\SubtitleSearch.cs" />
111+
<Compile Include="Interop\Json\Encode\Source.cs" />
112+
<Compile Include="Interop\Json\Encode\SubImport.cs" />
113+
<Compile Include="Interop\Json\Encode\Subtitles.cs" />
114+
<Compile Include="Interop\Json\Encode\SubtitleTrack.cs" />
115+
<Compile Include="Interop\Json\Encode\Video.cs" />
116+
<Compile Include="Interop\Factories\AnamorphicFactory.cs" />
117+
<Compile Include="Interop\Json\State\TaskState.cs" />
118+
<Compile Include="Interop\Model\Encoding\CombDetect.cs" />
119+
<Compile Include="Interop\Model\Encoding\DeinterlaceFilter.cs" />
120+
<Compile Include="Interop\Model\Encoding\Denoise.cs" />
121+
<Compile Include="Interop\Model\Encoding\Detelecine.cs" />
122+
<Compile Include="Interop\Model\Encoding\HBPresetTune.cs" />
123+
<Compile Include="Interop\Model\Encoding\Sharpen.cs" />
124+
<Compile Include="Interop\Model\PresetVersion.cs" />
125+
<Compile Include="Interop\Model\Preview\RawPreviewData.cs" />
126+
<Compile Include="Properties\AssemblyInfo.cs" />
127+
<Compile Include="Interop\Json\Scan\SourceAudioTrack.cs" />
128+
<Compile Include="Interop\Json\Scan\SourceChapter.cs" />
129+
<Compile Include="Interop\Json\Scan\Color.cs" />
130+
<Compile Include="Interop\Json\Scan\Duration.cs" />
131+
<Compile Include="Interop\Json\Scan\FrameRate.cs" />
132+
<Compile Include="Interop\Json\Shared\Geometry.cs" />
133+
<Compile Include="Interop\Json\Scan\JsonScanObject.cs" />
134+
<Compile Include="Interop\Json\Scan\SourceMetadata.cs" />
135+
<Compile Include="Interop\Json\Scan\SourceSubtitleTrack.cs" />
136+
<Compile Include="Interop\Json\Scan\SourceTitle.cs" />
137+
<Compile Include="Interop\Json\State\JsonState.cs" />
138+
<Compile Include="Interop\Json\State\Scanning.cs" />
139+
<Compile Include="Interop\Json\State\WorkDone.cs" />
140+
<Compile Include="Interop\Json\State\Working.cs" />
141+
<Compile Include="Interop\Model\BitrateLimits.cs" />
142+
<Compile Include="Interop\Model\Cropping.cs" />
143+
<Compile Include="Interop\Model\Encoding\Anamorphic.cs" />
144+
<Compile Include="Interop\Model\Encoding\Container.cs" />
145+
<Compile Include="Interop\Model\Encoding\HBAudioEncoder.cs" />
146+
<Compile Include="Interop\Model\Encoding\HBContainer.cs" />
147+
<Compile Include="Interop\Model\Encoding\HBMixdown.cs" />
148+
<Compile Include="Interop\Model\Encoding\HBRate.cs" />
149+
<Compile Include="Interop\Model\Encoding\HBVideoEncoder.cs" />
150+
<Compile Include="Interop\Model\Encoding\PictureRotation.cs" />
151+
<Compile Include="Interop\Model\Encoding\ScaleMethod.cs" />
152+
<Compile Include="Interop\Model\Encoding\VideoEncoder.cs" />
153+
<Compile Include="Interop\Model\Encoding\VideoEncodeRateType.cs" />
154+
<Compile Include="Interop\Model\Language.cs" />
155+
<Compile Include="Interop\Model\Preview\PreviewSettings.cs" />
156+
<Compile Include="Interop\Model\RangeLimits.cs" />
157+
<Compile Include="Interop\Model\Size.cs" />
158+
<Compile Include="Interop\Model\SourceVideoInfo.cs" />
159+
<Compile Include="Interop\Model\VideoQualityLimits.cs" />
160+
<Compile Include="Model\HBConfiguration.cs" />
161+
<Compile Include="Model\VideoScaler.cs" />
162+
<Compile Include="Utilities\SystemInfo.cs" />
163+
<Compile Include="Utilities\VersionHelper.cs" />
164+
<Compile Include="Properties\Resources.Designer.cs">
165+
<AutoGen>True</AutoGen>
166+
<DesignTime>True</DesignTime>
167+
<DependentUpon>Resources.resx</DependentUpon>
168+
</Compile>
169+
<Compile Include="Utilities\CharCodesUtilities.cs" />
170+
<Compile Include="Utilities\LanguageUtilities.cs" />
42171
</ItemGroup>
43-
44172
<ItemGroup>
45-
<None Include="..\doc\License.txt">
46-
<Pack>True</Pack>
47-
<PackagePath></PackagePath>
48-
</None>
173+
<AdditionalFiles Include="..\stylecop.json">
174+
<Link>stylecop.json</Link>
175+
</AdditionalFiles>
176+
<None Include="app.config" />
177+
<None Include="packages.config" />
49178
</ItemGroup>
179+
<ItemGroup>
180+
<None Include="HandBrake.Interop.nuspec" />
181+
</ItemGroup>
182+
<ItemGroup>
183+
<EmbeddedResource Include="Properties\Resources.resx">
184+
<Generator>ResXFileCodeGenerator</Generator>
185+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
186+
<SubType>Designer</SubType>
187+
</EmbeddedResource>
188+
</ItemGroup>
189+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
190+
<PropertyGroup>
191+
<TargetFrameworkSDKToolsDirectory Condition=" '$(Platform)' == 'x64'">$(TargetFrameworkSDKToolsDirectory)$(Platform)\</TargetFrameworkSDKToolsDirectory>
192+
</PropertyGroup>
193+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
194+
Other similar extension points exist, see Microsoft.Common.targets.
195+
<Target Name="BeforeBuild">
196+
</Target>
197+
<Target Name="AfterBuild">
198+
</Target>
199+
-->
200+
<PropertyGroup>
201+
<PreBuildEvent>
202+
</PreBuildEvent>
203+
</PropertyGroup>
50204
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
3+
<metadata>
4+
<id>$id$</id>
5+
<version>$version$-Nightly</version>
6+
<title>$title$</title>
7+
<authors>$author$</authors>
8+
<owners>$author$</owners>
9+
<licenseUrl>https://github.com/HandBrake/HandBrake/blob/master/LICENSE</licenseUrl>
10+
<projectUrl>http://github.com/HandBrake/HandBrake</projectUrl>
11+
<iconUrl>https://avatars1.githubusercontent.com/u/627269</iconUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<description>$description$</description>
14+
<copyright>Copyright © 2003-2019 HandBrake Team</copyright>
15+
<tags>Open-Source Video Transcoder</tags>
16+
17+
<dependencies>
18+
<dependency id="Newtonsoft.Json" version="11.0.2" />
19+
</dependencies>
20+
</metadata>
21+
22+
<files>
23+
<file src="bin\Release\HandBrake.Interop.pdb" target="lib\net471" />
24+
</files>
25+
</package>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
// --------------------------------------------------------------------------------------------------------------------
2+
// <copyright file="AssemblyInfo.cs" company="HandBrake Project (http://handbrake.fr)">
3+
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
4+
// </copyright>
5+
// <summary>
6+
// Assembly Info
7+
// </summary>
8+
// <auto-generated/>
9+
// --------------------------------------------------------------------------------------------------------------------
10+
11+
using System.Reflection;
12+
using System.Resources;
13+
using System.Runtime.CompilerServices;
14+
using System.Runtime.InteropServices;
15+
16+
// General Information about an assembly is controlled through the following
17+
// set of attributes. Change these attribute values to modify the information
18+
// associated with an assembly.
19+
[assembly: AssemblyTitle("HandBrake.Interop")]
20+
[assembly: AssemblyDescription("HandBrake is a GPL-licensed, multiplatform, multithreaded video transcoder.")]
21+
[assembly: AssemblyConfiguration("")]
22+
[assembly: AssemblyCompany("HandBrake Team")]
23+
[assembly: AssemblyProduct("HandBrake")]
24+
[assembly: AssemblyCopyright("Copyright © 2003-2019 HandBrake Team")]
25+
[assembly: AssemblyTrademark("")]
26+
[assembly: AssemblyCulture("")]
27+
28+
// Setting ComVisible to false makes the types in this assembly not visible
29+
// to COM components. If you need to access a type in this assembly from
30+
// COM, set the ComVisible attribute to true on that type.
31+
[assembly: ComVisible(false)]
32+
33+
// The following GUID is for the ID of the typelib if this project is exposed to COM
34+
[assembly: Guid("5e4e3f97-5252-41f6-aae9-3846f62cbc66")]
35+
36+
// Version information for an assembly consists of the following four values:
37+
//
38+
// Major Version
39+
// Minor Version
40+
// Build Number
41+
// Revision
42+
//
43+
// You can specify all the values or you can default the Build and Revision Numbers
44+
// by using the '*' as shown below:
45+
// [assembly: AssemblyVersion("1.0.*")]
46+
[assembly: AssemblyVersion("1.3.0.0")]
47+
[assembly: NeutralResourcesLanguage("")]
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="gong-wpf-dragdrop" version="2.0.1" targetFramework="net471" />
4+
<package id="Newtonsoft.Json" version="12.0.2" targetFramework="net471" />
5+
</packages>

win/CS/HandBrake.sln

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.28803.352
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HandBrake.Interop", "HandBrake.Interop\HandBrake.Interop.csproj", "{087A2BA8-BAC2-4577-A46F-07FF9D420016}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HandBrake.Interop", "HandBrake.Interop\HandBrake.Interop.csproj", "{087A2BA8-BAC2-4577-A46F-07FF9D420016}"
77
EndProject
8-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HandBrakeWPF", "HandBrakeWPF\HandBrakeWPF.csproj", "{DADE66CB-0E12-4959-ADE5-0ACD31D27C59}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HandBrakeWPF", "HandBrakeWPF\HandBrakeWPF.csproj", "{DADE66CB-0E12-4959-ADE5-0ACD31D27C59}"
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5CB7BC74-449C-4E95-98AB-E1E4387E514B}"
1111
ProjectSection(SolutionItems) = preProject
@@ -33,8 +33,8 @@ Global
3333
{DADE66CB-0E12-4959-ADE5-0ACD31D27C59}.Debug|x64.Build.0 = Debug|x64
3434
{DADE66CB-0E12-4959-ADE5-0ACD31D27C59}.Release|x64.ActiveCfg = Release|x64
3535
{DADE66CB-0E12-4959-ADE5-0ACD31D27C59}.Release|x64.Build.0 = Release|x64
36-
{3BAEBAC7-9042-4863-876F-C550ADCA66DC}.Debug|x64.ActiveCfg = Debug|x64
37-
{3BAEBAC7-9042-4863-876F-C550ADCA66DC}.Release|x64.ActiveCfg = Release|x64
36+
{3BAEBAC7-9042-4863-876F-C550ADCA66DC}.Debug|x64.ActiveCfg = Debug|Any CPU
37+
{3BAEBAC7-9042-4863-876F-C550ADCA66DC}.Release|x64.ActiveCfg = Release|Any CPU
3838
{6E855245-E402-4C0F-BB0B-EEB63082F6AC}.Debug|x64.ActiveCfg = Debug|x64
3939
{6E855245-E402-4C0F-BB0B-EEB63082F6AC}.Release|x64.ActiveCfg = Release|x64
4040
{F8370F37-B226-4830-AEE7-6D7AE403E3D2}.Debug|x64.ActiveCfg = Debug|x64

win/CS/HandBrakeTools/HandBrakeTools.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{3BAEBAC7-9042-4863-876F-C550ADCA66DC}</ProjectGuid>
88
<OutputType>Exe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -28,8 +28,8 @@
2828
<UseApplicationTrust>false</UseApplicationTrust>
2929
<BootstrapperEnabled>true</BootstrapperEnabled>
3030
</PropertyGroup>
31-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
32-
<PlatformTarget>x64</PlatformTarget>
31+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
32+
<PlatformTarget>AnyCPU</PlatformTarget>
3333
<DebugSymbols>true</DebugSymbols>
3434
<DebugType>full</DebugType>
3535
<Optimize>false</Optimize>
@@ -39,8 +39,8 @@
3939
<WarningLevel>4</WarningLevel>
4040
<Prefer32Bit>false</Prefer32Bit>
4141
</PropertyGroup>
42-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
43-
<PlatformTarget>x64</PlatformTarget>
42+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
43+
<PlatformTarget>AnyCPU</PlatformTarget>
4444
<DebugType>pdbonly</DebugType>
4545
<Optimize>true</Optimize>
4646
<OutputPath>bin\Release\</OutputPath>

0 commit comments

Comments
 (0)