On dotnet restore we are receiving the following error:
dotnet restore
Package Microsoft.AspNet.SomePackage 5.6.7 is not compatible with netcoreapp1.0
Note - by adding "net451" to the framework imports I was able to make it work.
"frameworks": { "netcoreapp1.0": { "imports": [ "net451", "dotnet5.6", "portable-net45+win8" ] } },
I took it from here