Nuget Packages are there but missing References

This worked for me:

  • Unload proj from solution
  • Edit csproj file and delete nuggets entries from csproj file (ItemGroup).
  • Reload proj

You need use the NuGet command line in the Package Manager Console:

Update-Package -reinstall

to force reinstall the package references into project.

NuGet Restore only restores files in the packages directory (\packages folder ), but does not restore files inside your project or otherwise modify your project. For example, if a package has added some reference DLLs or other files in your project, if you delete any of these files, they will not be re-added when restoring this package. This may cause the your project to not be able to find the missing dependencies when building.

So use the "Update-Package -reinstall" command to force reinstall the package references and content files into project.


as found for VS2013 by Shivam (https://stackoverflow.com/a/46763556/1034160) , my solution in VS2017 was to clear Nuget cache from: Options -> NugetPackageManager -> Clear All NuGet Cache(s)