Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some .nupkg files from a C# book. How can I install them? can't see my packages

share|improve this question

2 Answers

up vote 27 down vote accepted

Tools - > Options -> Package Manager

enter image description here

Give a name and folder location. Click OK. Drop your nuget package files in that folder.

Go to your Project, Right click and select "Manage Nuget Packages" and select your new Package source.

enter image description here

Here is the documentation

share|improve this answer
1  
Actually, I have done step 1 a few times. But my package is not showing up in step 2, when I open up to view Installed packages, Updates or Recent packages. – Tom Apr 20 '12 at 4:20
On my screen, I only have "All" under "Installed packages" not the "NuGet offical package source", not my custom "newNuget", they are missing. – Tom Apr 20 '12 at 4:22
which version of VS you are using ? do you have an updated version of nuget ? – Shyju Apr 20 '12 at 4:23
I am using vs2010. Trying to download and install latest nuget from their homepage just now. Download click next next...then error...M$ as expected, there is a link of known issues, checked that, says signature mismatch then I need to uninstall the existing nuget and it is easy fix. fine, do that. When I restart computer and do install again, same error comes back, signature mismatch... so now I am stuck with the old version gone, new version doesn't want to install. – Tom Apr 20 '12 at 5:03
Install Error : VSIXInstaller.SignatureMismatchException: The signature on the update version of 'NuGet Package Manager' does not match the signature on the installed version. Therefore, Extension Manager cannot install the update. at VSIXInstaller.Common.VerifyMatchingExtensionSignatures(IInstalledExtension installedExtension, IInstallableExtension updateExtension) at VSIXInstaller.InstallProgressPage.BeginInstallVSIX(SupportedVSSKU targetAppID) – Tom Apr 20 '12 at 5:03
show 1 more comment

You can also use the Package Manager Console and invoke the Install-Package cmdlet by specifying the path to the directory that contains the package file in the -Source parameter:

Install-Package SomePackage -Source C:\PathToThePackageDir\
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.