Search code examples
c#dnxasp.net-core-1.0dnx50

Reference error


I am getting reference error after i created new project in Asp.net core:

dnx4.5.1

dnx 5.0 My dnvm list

How can i fix that?


Solution

  • What happens here is that you have dependencies in your project that need to be download. The command dnu restore will download the dependencies and add them to your app package directory. You have to run the command from the folder that contains the app (the one that contains the project.json).

    To know more about it follow this posts: