Reputation: 67
my Problem is:
Today i open my App in Visual Studio 2015 but there was an ERROR by the References about:
What can I do to remove this problem ?
Here is a Image of that what i see:
Upvotes: 2
Views: 3696
Reputation: 1
You have to update the Dot Net core preview tool from the version 1.0.0 to version 1.0.1 version Then you have to restore the packages.
Upvotes: 0
Reputation: 1955
Right clicking on References, and restoring packages may fix the problem.
If the solution still builds, and the error is only seen via resharper/red errors for intellisense in visual studio, it may be another problem which appears to be related to the order the dependencies are processed.
Go to your project.json, and if you see red lines under the versions here, your problem will be the ordering. Hover over the red line to show "potential fixes", and select "sort dependencies".
(NB: this is likely a bug in either VS or resharper, but worth noting.)
Upvotes: 0
Reputation: 46491
Looks like Visual Studio is upset. You can try and force a restore of your packages via:
References -> Restore Packages
Or run:
dotnet restore
on the command line
Upvotes: 7