0

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?

user3210023
  • 164
  • 13

1 Answers1

1

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:

wajiro_91
  • 170
  • 1
  • 9
  • While the link might answer the question you should include the relevant information in your answer. – juharr May 06 '16 at 18:17