Reputation: 70176
I have a NuGet package that I can't find when looking at available updates in Visual Studio. If I check the package online it is marked as This package has not been indexed yet. It will appear in search results and will be available for install/restore after indexing is completed.
.
Can I update this package without using NuGet server? I have been waiting for 15 minutes and wan't to continue.
Upvotes: 3
Views: 1360
Reputation: 70176
Found a solution. Download the .nupkg
file from NuGet and place it in Downloads
for example. After that run:
Install-Package HiQ.Repository.EntityFramework -Source "C:\Users\User\Downloads\"
Upvotes: 1