Vnuuk
Vnuuk

Reputation: 6537

Issue with building ASP.NET 5 library

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.

enter image description here

Upvotes: 0

Views: 36

Answers (1)

R Day
R Day

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

Related Questions