|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
3 | | - <ItemGroup> |
4 | | - <CefSharpCommonBinaries32 Include="$(MSBuildThisFileDirectory)..\CefSharp\x86\*.*" /> |
5 | | - <CefSharpCommonBinaries64 Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\*.*" /> |
6 | | - </ItemGroup> |
7 | | - |
8 | | - <PropertyGroup> |
9 | | - <CefSharpTargetDir Condition=" '$(CefSharpTargetDir)' == '' "></CefSharpTargetDir> |
10 | | - </PropertyGroup> |
11 | | - |
12 | 3 | <Choose> |
13 | | - <When Condition="'$(Platform)' == 'AnyCPU'"> |
14 | | - <ItemGroup> |
15 | | - <Reference Include="CefSharp"> |
16 | | - <HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.dll</HintPath> |
17 | | - <Private>False</Private> |
18 | | - </Reference> |
19 | | - <Reference Include="CefSharp.Core"> |
20 | | - <HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.Core.dll</HintPath> |
21 | | - <Private>False</Private> |
22 | | - </Reference> |
23 | | - <!-- |
24 | | - We include CefSharp and CefSharp.Core as private false then copy the files using a |
25 | | - None entry. The 32bit libs must be included first or VS will use the x64 |
26 | | - ones for the VS Designer. |
27 | | - --> |
28 | | - <None Include="@(CefSharpCommonBinaries32)"> |
29 | | - <Link>$(CefSharpTargetDir)\x86\%(RecursiveDir)%(FileName)%(Extension)</Link> |
30 | | - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
31 | | - </None> |
32 | | - <None Include="@(CefSharpCommonBinaries64)"> |
33 | | - <Link>$(CefSharpTargetDir)\x64\%(RecursiveDir)%(FileName)%(Extension)</Link> |
34 | | - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
35 | | - </None> |
36 | | - </ItemGroup> |
37 | | - </When> |
38 | 4 | <When Condition="'$(Platform)' == 'x64'"> |
39 | 5 | <ItemGroup> |
40 | 6 | <Reference Include="CefSharp"> |
41 | 7 | <HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.dll</HintPath> |
42 | | - <Private>True</Private> |
| 8 | + <Private>False</Private> |
43 | 9 | </Reference> |
44 | 10 | <Reference Include="CefSharp.Core"> |
45 | 11 | <HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.Core.dll</HintPath> |
46 | | - <Private>True</Private> |
| 12 | + <Private>False</Private> |
47 | 13 | </Reference> |
48 | 14 | </ItemGroup> |
49 | 15 | </When> |
|
52 | 18 | <ItemGroup> |
53 | 19 | <Reference Include="CefSharp"> |
54 | 20 | <HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.dll</HintPath> |
55 | | - <Private>True</Private> |
| 21 | + <Private>False</Private> |
56 | 22 | </Reference> |
57 | 23 | <Reference Include="CefSharp.Core"> |
58 | 24 | <HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.Core.dll</HintPath> |
59 | | - <Private>True</Private> |
| 25 | + <Private>False</Private> |
60 | 26 | </Reference> |
61 | 27 | </ItemGroup> |
62 | 28 | </Otherwise> |
|
0 commit comments