I realize that this is not the best practices for working on individual projects. However, I had a rather large code base I am attempting to refactor, and would like to know if a change I make has modified/broken any number of existing projects.

Is there a way to add all existing projects within a specific directory to a single solution within visual studio?

If not, is there another way I could do this without manually adding each project?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

I do not believe there is a method in the box.

But if it's really going to be that tedious of a task I would use PowerShell to search the directory for a files with the csproj extension, and output a bunch of "Project" statements (along with generation of unique identifiers) that you can copy/paste into your Solution file.

link|improve this answer
Thanks you, sir! :) – Christopher Harris Dec 14 '11 at 21:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.