Skip to content

Commit 843d4ea

Browse files
committed
Merge remote-tracking branch 'remotes/upstream/master' into fix/jsb-memoryleak
2 parents bff700a + aee3c83 commit 843d4ea

File tree

4 files changed

+31
-24
lines changed

4 files changed

+31
-24
lines changed

NuGet/CefSharp.Common.props

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
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.dll" />
6-
<Reference Condition="'$(Platform)' == 'x64'"
7-
Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.dll" />
8-
9-
<Reference Condition="'$(Platform)' == 'x86'"
10-
Include="$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.Core.dll" />
11-
<Reference Condition="'$(Platform)' == 'x64'"
12-
Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.Core.dll" />
4+
<Reference Include="CefSharp" Condition="'$(Platform)' == 'x86'">
5+
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.dll</HintPath>
6+
</Reference>
7+
<Reference Include="CefSharp" Condition="'$(Platform)' == 'x64'">
8+
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.dll</HintPath>
9+
</Reference>
10+
<Reference Include="CefSharp.Core" Condition="'$(Platform)' == 'x86'">
11+
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.Core.dll</HintPath>
12+
</Reference>
13+
<Reference Include="CefSharp.Core" Condition="'$(Platform)' == 'x64'">
14+
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.Core.dll</HintPath>
15+
</Reference>
1316
</ItemGroup>
1417
</Project>

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>

NuGet/CefSharp.Wpf.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.Wpf.dll" />
6-
7-
<Reference Condition="'$(Platform)' == 'x64'"
8-
Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.Wpf.dll" />
4+
<Reference Include="CefSharp.Wpf" Condition="'$(Platform)' == 'x86'">
5+
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.Wpf.dll</HintPath>
6+
</Reference>
7+
<Reference Include="CefSharp.Wpf" Condition="'$(Platform)' == 'x64'">
8+
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.Wpf.dll</HintPath>
9+
</Reference>
910
</ItemGroup>
1011
</Project>

0 commit comments

Comments
 (0)