I've updated a class library's project.json
to target netstandard1.3
and net64
.
With that change:
$ dotnet restore
log : Restoring packages
warn : Dependency specified was NETStandard.Library (>= 1.3.0) but ended up with
NETStandard.Library 1.6.0.
I'm publishing a library and really need to target netstandard1.3
/net46
.
How can I diagnose why a higher version is being used instead?