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.
1 Answer
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
},
2 Comments
Vnuuk
In my project.json file I have no external libs, only MS related - screencast.com/t/lQI4dprBu
R Day
@Vnuuk it's not a reference but one fo the platform targets. I've updated my answer to reflect that.
