lorisleitner
lorisleitner

Reputation: 698

Start solution build from VSIX command

I'm creating a Visual Studio Extension and want to create a command to build the current solution and start debugging afterwards, so that I have to press one button and wait instead of starting build, waiting and then run.

How can I call Visual Studio's default commands from my command?

Upvotes: 0

Views: 338

Answers (1)

Sergey Vlasov
Sergey Vlasov

Reputation: 27880

Call ExecuteCommand like DTE.ExecuteCommand("Debug.Start");

Upvotes: 1

Related Questions