I have created a Web API dotnet core project and i would like to use an older C# library (.NET Framework 4.5)
My project.json looks like
...
"frameworks": {
"netcoreapp1.0": {
"imports": [
"net451",
//"dotnet5.6",
//"dnxcore50",
"portable-net45+win8"
],
"dependencies": {
"LibInternal": {
"target": "project"
}
}
}
...
After adding a using in Startup.cs, i get the error - the type or namespace name "..." could not be found.
What is wrong?