<?xml version="1.0" encoding="utf-8"?>
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<ItemGroup>
|
<CefSharpWinFormsBinaries32 Include="$(MSBuildThisFileDirectory)..\CefSharp\x86\*.*" />
|
<CefSharpWinFormsBinaries64 Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\*.*" />
|
<!-- Not currently used, might come in handy for someone though as it contains all x86 and x64 files -->
|
<CefSharpWinFormsBinariesAnyCPU Include="$(MSBuildThisFileDirectory)..\CefSharp\**\*.*" />
|
</ItemGroup>
|
|
<Choose>
|
<When Condition="'$(Platform)' == 'x64'">
|
<ItemGroup>
|
<Reference Include="CefSharp.WinForms">
|
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.WinForms.dll</HintPath>
|
<Private>False</Private>
|
</Reference>
|
</ItemGroup>
|
</When>
|
<!-- x86, Win32 and AnyCPU -->
|
<Otherwise>
|
<ItemGroup>
|
<Reference Include="CefSharp.WinForms">
|
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.WinForms.dll</HintPath>
|
<Private>False</Private>
|
</Reference>
|
</ItemGroup>
|
</Otherwise>
|
</Choose>
|
</Project>
|