Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When is it necessary to add the nuget package Microsoft.NETCore.Portable.Compatibility

The description on Nuget Gallery confuses me. For example, I am creating a "new style" (netstandard) Portable Library. Do I need to add this package to my dependencies when I reference an oldstyle PCL Library from my package or vice versa?

When exactly do I need to add this package to my dependencies?

like image 440
rudimenter Avatar asked Aug 30 '16 09:08

rudimenter


1 Answers

If you use a package from nuget that hasn't yet been updated for .Net Core / .Net Standard, but does have PCLs inside it, this package can help.

Damian Edwards talks about it here: https://youtu.be/NSjYQmu1u_k?t=36m30s

like image 90
user888734 Avatar answered Oct 15 '22 02:10

user888734