How to install all NuGet packages from specific source?
Does exist console command for it?
How to install all NuGet packages from specific source? Does exist console command for
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use “-Source” on the “Install-Package” command or you can use the drop down to choose a configured source (when using the package manager console).
Here is the documentation for the Install-Package command:
http://docs.nuget.org/docs/reference/package-manager-console-powershell-reference#Install-Package
To configure a custom package source, go to Tools -> Options -> Package Manager -> Package Sources and add your custom source to the list.
After adding it, you should be able to choose it when installing from the dialog, or you can use the drop down box in the console to choose it.