I can't understand difference between lot of ASP.NET Core framework names:
- dnxcore50
- dotnet5.4
- netcoreapp
dotnet5.4 is a new name for dnxcore50?
I create Class Library project and there is dotent5.4 in project.json. Then I create empty ASP.NET project an dthere is dnxcore50.
I add dependency to Microsoft.EntityFrameworkCore 1.0.0 to project and get error:
The dependency Microsoft.EntityFrameworkCore does not support for framework NETPlatform, Version=v5.4
What is the correct framework version and Entity Framework version?


