Reputation: 6537
That's strange. I can't build my project (one library). I don't see any errors from IntelliSense. But when I try to build via F5 it shows be loads of errors. I can't understand why, since I have all references installed.
Upvotes: 0
Views: 36
Reputation: 972
If you look in the 'Project' column of the error list you'll see that it is only DNX Core 5 that is failing to build. Not all libraries support DNX Core yet. Try removing it from your project.json file.
"frameworks": {
"dnx451": { },
"dnxcore50": { } <-- remove this line
},
Upvotes: 2