Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to visual studio and I am experimenting around with some Windows Services. I have created two solutions and I would like to view both of them at once. Without having to click file->recent projects to switch back and forth.

Ideally this could take place in the solution explorer and just nest the projects, but I am only able to view one solution/project at a time there.

Is there anyway to view multiple solutions/projects in Visual Studio?

share|improve this question

5 Answers

up vote 25 down vote accepted

This is the way Visual Studio is designed: One solution, one Visual Studio (VS) instance.

Besides switching between solutions in one VS instance, you can also open another VS instance and open your other solution with that one. Next to solutions there are as you said "projects". You can have multiple projects within one solution and therefore view many projects at the same time.

share|improve this answer
Ok that makes sense. So in a nutshell you can nest projects within solutions. But you cannot have many solutions open at once. Thanks. – Mike Nov 2 '10 at 15:42
3  
Your nutshell summary is correct ;-) – moontear Nov 2 '10 at 15:46

If you have two separate solutions, then you cannot view them simultaneously in the same VS instance. However, you can open multiple instances of VS and tab between them.

An alternative would be to import the projects from one solution into the other, thus putting all of your projects into one solution. You can do this by following these steps:

  1. In the Solution Explorer, select the Solution into which you want to import a project. Right-click, and select Add->Existing Project from the context menu.

  2. In the file chooser, find the project file that you want to import (it will end in .XXproj where XX is the language you're using).

  3. Click Open and voila! Your project is imported.

share|improve this answer
Good to know. Thanks. – Mike Nov 2 '10 at 15:44

You can have multiple projects in one instance of Visual Studio. The point of a VS solution is to bring together all the projects you want to work with in one place, so you can't have multiple solutions in one instance. You'd have to open each solution separately.

share|improve this answer

You can create a new blank solution and add your different projects to it.

share|improve this answer
Please explain why the downvote? – XIII Nov 2 '10 at 15:49
I put you back to even. – Mike Nov 2 '10 at 15:52

There's a much easier (but not so obvious) way; right click on the Visual Studio icon in the taskbar, then right click on the application name in the popup menu, then click "Open". Windows will then open another instance where you can open another solution in.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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