Manual installation of ".nupkg" packages on Visual Studio 2010

I have a pre-released version of the SQLite package I downloaded earlier and I am trying to install it from the Package Manager Console, I used

install-package -includeprerelease -Source E: \ e

but without success, any advice would be helpful.

edit: the error message I ran into is this:

install-package : Unable to find package 'a'.
At line:1 char:1
+ install-package -includeprerelease -Source E:\e
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo          : NotSpecified: (:) [Install-Package], InvalidOperationException
+ FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand

      

and this happened after an error in the value entered after this request:

cmdlet Install-Package at command pipeline position 1 
Supply values for the following parameters:
Id:

      

+3


source to share


1 answer


You did not include the package ID in the original command. From the error message, it looks like you entered 'a' for the bundle id.

install-package SQLite -includeprerelease -Source E:\e

      



Replace SQLite in the above command with the correct package ID for your NuGet package.

+2


source







All Articles