Skip to content

Commit

Permalink
Add a ".NETCoreApp3.0" dependency to the .nuspec files.
Browse files Browse the repository at this point in the history
This ensures the transitive dependencies (CefSharp.Common) are correctly resolved in .NET Core 3.0 projects.

Contributes to cefsharp#2796
  • Loading branch information
kpreisser committed Sep 6, 2019
1 parent 2d20309 commit 7cc3c1c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions NuGet/CefSharp.OffScreen.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
<group targetFramework=".NETFramework4.5.2">
<dependency id="CefSharp.Common" version="[$version$]" />
</group>
<group targetFramework=".NETCoreApp3.0">
<dependency id="CefSharp.Common" version="[$version$]" />
</group>
</dependencies>
<releaseNotes>
<![CDATA[
Expand Down
3 changes: 3 additions & 0 deletions NuGet/CefSharp.WinForms.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
<group targetFramework=".NETFramework4.5.2">
<dependency id="CefSharp.Common" version="[$version$]" />
</group>
<group targetFramework=".NETCoreApp3.0">
<dependency id="CefSharp.Common" version="[$version$]" />
</group>
</dependencies>
<releaseNotes>
<![CDATA[
Expand Down
3 changes: 3 additions & 0 deletions NuGet/CefSharp.Wpf.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
<group targetFramework=".NETFramework4.5.2">
<dependency id="CefSharp.Common" version="[$version$]" />
</group>
<group targetFramework=".NETCoreApp3.0">
<dependency id="CefSharp.Common" version="[$version$]" />
</group>
</dependencies>
<releaseNotes>
<![CDATA[
Expand Down

0 comments on commit 7cc3c1c

Please sign in to comment.