How to install nuget package manually :)
Posted
by Anirudha
on Geeks with Blogs
See other posts from Geeks with Blogs
or by Anirudha
Published on Tue, 12 Nov 2013 22:57:14 GMT
Indexed on
2013/11/13
9:56 UTC
Read the original article
Hit count: 220
Originally posted on: http://geekswithblogs.net/anirugu/archive/2013/11/13/how-to-install-nuget-package-manually.aspx
When you install a nuget package in your project then Visual studio cached it for you for future purpose. If you live offline few time you can add the this cache directory as your nuget source.
For see the folder where nuget cached then just go to
Tools > options > Package manager > source > Cached packages > browse. You can add this cached folder as source.
For use nuget package without Visual studio you can try this trick.
open this in your explorer
C:\Users\{yourusername}\AppData\Local\NuGet\Cache
Now rename the file as described here.
for example bootstrap.3.0.2.nupkg to bootstrap.3.0.2.rar
open the rar and see the content folder. this folder contain the assembly/library that nuget install in your project.
© Geeks with Blogs or respective owner