I\'m trying to give the SignalR Sample a test drive but it seems it references an old version of SignalR which is no longer available. The actual problem is that NuGet cannot re
In my case, I'd restarted visual studio. Then I'd removed nuget package entry from package.config.
After that I was able to restore the dependency.
Mentioned by @ferarias in a comment - if you are using nuget.exe
, try updating it or downloading the latest version.
For me, upgrading from v4.4.1
to v4.6.2
was enough to fix the Some NuGet packages are missing
error.
You can manually remove the dependency by:
There's an easier solution, if you know the versions that currently exist in the feed. This solution can fix every package in every project.
Update-Package -Reinstall
Hope it helps
What works for me is:
1. Go to the packages.config file,
2. Find "... id="Microsoft.AspNet.SignalR.Client" version="" targetFramework="net45"..."
3. Change to an existing version, say "2.2.0".
4. Save.
5. Go to Nuget, and update to the latest.