On dotnet restore we are receiving the following error:
dotnet restore
Package Microsoft.AspNet.SomePackage 5.6.7 is not compatible with netcoreapp1.0
If you need to do the same thing but are using the new .csproj for configuration rather than the project.json, edit your .csproj file and add the following right below the propertygroup:
net451;dotnet5.6;portable-net45+win8
Taken from here.