I have a home grown nuget package that targets netstandard1.6 published to a private feed. When I try to install it into a package that targets .NET Framework 4.6.2, nuget tells me:
You are trying to install this package into a project that targets '.NETFramework,Version=v4.6.2', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.
The dependency list for the package looks like:
I'm using Visual Studio 2017, March 28 2017 release.
I thought this was the whole point of the .NET Standard library? What am I missing?