views:

67

answers:

1

In Visual Studio, we can "Add as link" to add a link to a file in another project in the solution.

Is there any way to do this for entire folders, so that an entire folder in project A will be visible in project B, without the need to manually link to new items in that folder?

+2  A: 

There's no way to do it for entire folders, but if two projects are in the same solution you can use VSCommands 2010 to copy several files as links at the same time. see this video for more info http://www.youtube.com/watch?v=fa1M0NGXqMg or go to visualstudiogallery.msdn.microsoft.com/en-us/d491911d-97f3-4cf6-87b0-6a2882120acf?lc=1033

Registered User