MartyIX
MartyIX

Reputation: 28676

How to let Visual Studio to add references according to USINGS?

I realized that when dividing a project into two in Visual Studio (2010) I'm still looking for references that are missing in the new project. Can Visual Studio do that for me? It can find all the namespaces I use so it should be easy for it.

Thanks!

Upvotes: 0

Views: 58

Answers (1)

Aaron Marten
Aaron Marten

Reputation: 6578

There isn't any built-in way to do this. However, you may want to check out the PowerCommands extension which gives you a "Copy Reference" command to quickly copy/paste assembly references between projects.

Upvotes: 1

Related Questions