Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to add a Run Button and Compile Button on the toolbar in visual studio

I want to add a "Run" button and a "Compile" button on the toolbar so that I may not have to Press CTRL + F5 or CTRL + Shift + D

like image 202
Faizan Haidar Khan Avatar asked Feb 05 '23 01:02

Faizan Haidar Khan


1 Answers

View -> Toolbars -> Customuze -> Commands Tab -> Toolbar Option -> Add Command

You can add the Start Without Debugging command from the Debug group:

enter image description here

To compile you probably want the Build.Compile command:

enter image description here

like image 187
Sergey Vlasov Avatar answered May 10 '23 18:05

Sergey Vlasov