I have a Nuget package created from a v4.6 class library, is it possible to reference this in a new ASP.NET 5 xproj class library? I tried it and it gave me this error:
NU1001 The depdency Mylibrary >- 1.0.0 could not be resolved
It comes up as a dependency in my project.json like this but can't find it:
"frameworks": {
"net451": {
"dependencies": {
"MyLibrary": "1.0.0"
}
},