Visual Studio 2013 - Debug -> Start New Instance -


I have a Windows project project and I would like to start debugging 10 instances of that project once.

When you typically debug a project, then you just start an example. Debug -> You can create additional people by starting a new installation.

Is it possible to add shortcuts or buttons to Visual Studio or something like: debug 10 instance and in that pop-up 10 examples of that project.

You can go to Tools in the VS2013 menu -> Options and then Environment-> Keyboard

Search for "ClassviewContext Management, Class WivProject.Debug.Start EnvironmentIn <", Command and Map it on any shortcut like it.

Obviously, it starts a new instance every time you hit the keyboard shortcut. If you do not want to do this every time, every time you want to start debugging your project, then the next step is to do this.

You can do the same keyboard shortcut 10 times, or in your case.

EDIT: You are right, the add-in has actually been demoted in Visual Studio 2013, but they do still work. With Visual Studio 2013 installed and other project types -> Extensibility I can create a new visual studio add-in project. Try it


Comments

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -