Reputation: 465
That's it. Can this be initiated two times to open two separated solutions at the same time?
Upvotes: 29
Views: 9530
Reputation: 31
Upvotes: 2
Reputation: 74124
By default an .app
runs as a single instance/single document mode, its the Cocoa way of life and MonoDevelop/Xamarin Studio/Visual Studio for Mac follow that paradigm.
open MySolution.sln
open -n MySolution.sln
-n = Open a new instance of the application(s) even if one is already running.
From @TomGilder comment:
Ref: https://github.com/Redth/MSSolutionLauncher
Upvotes: 50
Reputation: 229
Open terminal and run the command:
open -n -a "Visual Studio"
Upvotes: 15
Reputation: 441
As a short cut I create a simple automator application that runs a bash script to open a new instance. You can do this with most Apps.
open -n /Applications/Visual\ Studio.app
When done save your automator application I usually call it "VSMac Clone" and give it a funky icon.
You can use the one I created at your own risk VSMac Clone
Upvotes: 6
Reputation: 12170
You can do this in the IDE when an existing solution is open by deselecting Close current workspace when you open the solution through the File -> Open menu:
Upvotes: 25