forked from cefsharp/CefSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaner naming of CefSharp dll references when automatically imported…
… from NuGet to VS
- Loading branch information
Showing
2 changed files
with
18 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Reference Condition="'$(Platform)' == 'x86'" | ||
Include="$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.dll" /> | ||
<Reference Condition="'$(Platform)' == 'x64'" | ||
Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.dll" /> | ||
|
||
<Reference Condition="'$(Platform)' == 'x86'" | ||
Include="$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.Core.dll" /> | ||
<Reference Condition="'$(Platform)' == 'x64'" | ||
Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.Core.dll" /> | ||
<Reference Include="CefSharp" Condition="'$(Platform)' == 'x86'"> | ||
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.dll</HintPath> | ||
</Reference> | ||
<Reference Include="CefSharp" Condition="'$(Platform)' == 'x64'"> | ||
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.dll</HintPath> | ||
</Reference> | ||
<Reference Include="CefSharp.Core" Condition="'$(Platform)' == 'x86'"> | ||
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.Core.dll</HintPath> | ||
</Reference> | ||
<Reference Include="CefSharp.Core" Condition="'$(Platform)' == 'x64'"> | ||
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.Core.dll</HintPath> | ||
</Reference> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Reference Condition="'$(Platform)' == 'x86'" | ||
Include="$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.Wpf.dll" /> | ||
|
||
<Reference Condition="'$(Platform)' == 'x64'" | ||
Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.Wpf.dll" /> | ||
<Reference Include="CefSharp.Wpf" Condition="'$(Platform)' == 'x86'"> | ||
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.Wpf.dll</HintPath> | ||
</Reference> | ||
<Reference Include="CefSharp.Wpf" Condition="'$(Platform)' == 'x64'"> | ||
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.Wpf.dll</HintPath> | ||
</Reference> | ||
</ItemGroup> | ||
</Project> |