Home > OS >  Why can't I find my debugging toolbar commands in Visual Studio?
Why can't I find my debugging toolbar commands in Visual Studio?

Time:11-03

I can't see any of my debugging commands. I've already installed Visual Studio 2017 and I'm currently editing a C# file, but now I'm having trouble with finding any of my debugging tools. Does anyone have a fix for this? I already disabled my extensions, but nothing seems to be working.


Should I uninstall my extensions completely or is there something else super obvious that I'm missing?

CodePudding user response:

Reinstall VS should be the last resort, you can try below suggestions first.

Please try to restart VS 2017 and if it doesn’t work, try to reboot your machine.

Please try to repair Visual Studio, in Visual Studio Installer > find Visual Studio 2017 > More > Repair.

Make sure that you are not using some extensions which may cause incompatibility. If you installed some extensions, please try to disable them temporary(Tools > Extensions and Updates… > find the extension you installed manually before > select it > Disable) and restart VS 2017.

Also, please try to delete the hidden .vs folder in your solution folder, and then try to start debugging again.

Sometimes, updating VS 2017(VS Installer > find VS 2017 > Update) will work.


Source

  • Related