Skip to content

Commit

Permalink
Merge a56ca44 into ce70212
Browse files Browse the repository at this point in the history
  • Loading branch information
kpreisser authored Sep 6, 2019
2 parents ce70212 + a56ca44 commit bf5d00e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 10 deletions.
20 changes: 16 additions & 4 deletions NuGet/CefSharp.Common.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,17 @@
<ItemGroup>
<Reference Include="CefSharp">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.dll</HintPath>
<Private>False</Private>
<Private Condition="!$(TargetFramework.StartsWith('netcoreapp'))">False</Private>
</Reference>
<Reference Include="CefSharp.Core">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.Core.dll</HintPath>
<Private>False</Private>
<Private Condition="!$(TargetFramework.StartsWith('netcoreapp'))">False</Private>
</Reference>
</ItemGroup>
<!-- Additional references for .NET Core -->
<ItemGroup Condition="$(TargetFramework.StartsWith('netcoreapp'))">
<Reference Include="CefSharp.BrowserSubprocess.Core">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.BrowserSubprocess.Core.dll</HintPath>
</Reference>
</ItemGroup>
</When>
Expand All @@ -27,11 +33,17 @@
<ItemGroup>
<Reference Include="CefSharp">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.dll</HintPath>
<Private>False</Private>
<Private Condition="!$(TargetFramework.StartsWith('netcoreapp'))">False</Private>
</Reference>
<Reference Include="CefSharp.Core">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.Core.dll</HintPath>
<Private>False</Private>
<Private Condition="!$(TargetFramework.StartsWith('netcoreapp'))">False</Private>
</Reference>
</ItemGroup>
<!-- Additional references for .NET Core -->
<ItemGroup Condition="$(TargetFramework.StartsWith('netcoreapp'))">
<Reference Include="CefSharp.BrowserSubprocess.Core">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.BrowserSubprocess.Core.dll</HintPath>
</Reference>
</ItemGroup>
</Otherwise>
Expand Down
4 changes: 2 additions & 2 deletions NuGet/CefSharp.OffScreen.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<ItemGroup>
<Reference Include="CefSharp.OffScreen">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.OffScreen.dll</HintPath>
<Private>False</Private>
<Private Condition="!$(TargetFramework.StartsWith('netcoreapp'))">False</Private>
</Reference>
</ItemGroup>
</When>
Expand All @@ -21,7 +21,7 @@
<ItemGroup>
<Reference Include="CefSharp.OffScreen">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.OffScreen.dll</HintPath>
<Private>False</Private>
<Private Condition="!$(TargetFramework.StartsWith('netcoreapp'))">False</Private>
</Reference>
</ItemGroup>
</Otherwise>
Expand Down
4 changes: 2 additions & 2 deletions NuGet/CefSharp.WinForms.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<ItemGroup>
<Reference Include="CefSharp.WinForms">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.WinForms.dll</HintPath>
<Private>False</Private>
<Private Condition="!$(TargetFramework.StartsWith('netcoreapp'))">False</Private>
</Reference>
</ItemGroup>
</When>
Expand All @@ -21,7 +21,7 @@
<ItemGroup>
<Reference Include="CefSharp.WinForms">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.WinForms.dll</HintPath>
<Private>False</Private>
<Private Condition="!$(TargetFramework.StartsWith('netcoreapp'))">False</Private>
</Reference>
</ItemGroup>
</Otherwise>
Expand Down
4 changes: 2 additions & 2 deletions NuGet/CefSharp.Wpf.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<ItemGroup>
<Reference Include="CefSharp.Wpf">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.Wpf.dll</HintPath>
<Private>False</Private>
<Private Condition="!$(TargetFramework.StartsWith('netcoreapp'))">False</Private>
</Reference>
</ItemGroup>
</When>
Expand All @@ -21,7 +21,7 @@
<ItemGroup>
<Reference Include="CefSharp.Wpf">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.Wpf.dll</HintPath>
<Private>False</Private>
<Private Condition="!$(TargetFramework.StartsWith('netcoreapp'))">False</Private>
</Reference>
</ItemGroup>
</Otherwise>
Expand Down

0 comments on commit bf5d00e

Please sign in to comment.