Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open two / multiple instances of Visual Studio for MAC?

I wish to open multiple instances of VS for Mac. I used to be able to do this with Xamarin studio using the Xamarin launcher.

How to do this with VS for Mac?

like image 517
Gobi M Avatar asked Nov 29 '16 05:11

Gobi M


People also ask

How do I open multiple instances of an application on a Mac?

Trying to use the Finder to open multiple instances of an application on Mac OS X will simply cause the first instance to come to the foreground. To get around this, use the open command from the command line with the -n option. The -n option opens a new instance of the application even if one is already running.

How do I open a second Visual Studio window?

Just right click on the Visual Studio icon and then select "New Window" from the contextual toolbar that appears on the bottom in Windows 8. A new instance of Visual Studio will launch and then you can open your second project.

How do I open multiple Vscode files on a Mac?

If you are using Windows, just hit Ctrl + Shift + N. If you are on a Mac, just press Command + Shift + N.


1 Answers

Open a terminal window, and then issue the following command:

open -n -a "Visual Studio" 
like image 198
moke Avatar answered Sep 22 '22 15:09

moke