ceremcem
ceremcem

Reputation: 4350

How to configure Visual Studio project to install dependencies from Nuget

Is there a way to tell Visual Studio that it needs to install some packages (like NetMQ) via Nuget automatically just before the first run of the project?

Upvotes: 1

Views: 5343

Answers (1)

jessehouwing
jessehouwing

Reputation: 114451

Visual Studio should do that by default if you're using Visual Studio 2015 and if your package is in your packages.config.

enter image description here

Highlighted options are available in Visual studio 2013 and 2012 as well.

Upvotes: 2

Related Questions