Skip to content

Commit aee3c83

Browse files
committed
Update project references in nuget props files
1 parent e7c4bc6 commit aee3c83

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

NuGet/CefSharp.OffScreen.props

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup>
4-
<Reference Condition="'$(Platform)' == 'x86'"
5-
Include="$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.OffScreen.dll" />
6-
7-
<Reference Condition="'$(Platform)' == 'x64'"
8-
Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.OffScreen.dll" />
4+
<Reference Include="CefSharp.OffScreen" Condition="'$(Platform)' == 'x86'">
5+
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.OffScreen.dll</HintPath>
6+
</Reference>
7+
<Reference Include="CefSharp.OffScreen" Condition="'$(Platform)' == 'x64'">
8+
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.OffScreen.dll</HintPath>
9+
</Reference>
910
</ItemGroup>
1011
</Project>
12+

NuGet/CefSharp.WinForms.props

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup>
4-
<Reference Condition="'$(Platform)' == 'x86'"
5-
Include="$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.WinForms.dll" />
6-
7-
<Reference Condition="'$(Platform)' == 'x64'"
8-
Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.WinForms.dll" />
4+
<Reference Include="CefSharp.WinForms" Condition="'$(Platform)' == 'x86'">
5+
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.WinForms.dll</HintPath>
6+
</Reference>
7+
<Reference Include="CefSharp.WinForms" Condition="'$(Platform)' == 'x64'">
8+
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.WinForms.dll</HintPath>
9+
</Reference>
910
</ItemGroup>
1011
</Project>

0 commit comments

Comments
 (0)