Rashid Khaziev
Rashid Khaziev

Reputation: 117

How to replace local solution project to nuget

I have a large solution in visual studio. And I have one project (logger), that uses in other all projects of solution. I need to replace this project (logger) in nuget. Because of that i need remove my logger project in solution, and in each project add in packages.config link to logger project in nuget. How can i simplify this work?

Upvotes: 0

Views: 716

Answers (1)

Weiwei
Weiwei

Reputation: 3776

You could right-click your solution to choose "Project Dependencies" option, and select your logger project in ComboBox. Then the project that reference the logger projects will shown as gray out. enter image description here

Then you could know which projects are reference your logger project and remove from these project and install the NuGet packages for these projects through "Manage NuGet Packages For Solutions" that ADyson suggested.

Upvotes: 1

Related Questions