Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS2022: "Diagnostic Tools" window no longer appears during debugging, can't bring it back

I must have fat-fingered something to turn it off, but when I try to run any c# project (.net 6 windows wpf, or even just a commandline application) in debug mode, I no longer see the Diagnostic Tools window. This is the thing that displays a real-time chart of memory consumption and other things.

I've been trying to re-enable Diagnostic Tools but so far haven't been able to do it. I can run in debug mode, everything else seems normal, I can add breakpoints etc. What could have gone wrong?

This is so perplexing!

Looking at the docs (Measure Performance While Debugging), it says...

The Diagnostic Tools window appears automatically unless you have turned it off. To bring up the window, click Debug / Windows / Show Diagnostic Tools (or press Ctrl + Alt + F2).

Here's what I tried:

  • ctrl + alt + f2 Does nothing.

  • In visual studio going to menu bar: Debug/Windows, there's no item for "Show Diagnostic Tools".

Show Diagnostic Tools -- not there!

  • When I search for Diagnostic Tools in the Visual studio search bar, it gives me a link to Debugging > General, but there is no checkbox for "Enable Diagnostic Tools while debugging" in the options dialog.

VS search for "Diagnostic Tools" There is no "Enable Diagnostic Tools when debugging" option

  • Of course, I also tried closing/re-opening VS. Also, performed an update and did a "repair" from the VS installer. Still the same behavior.

  • I also tried to "Reset Windows Layout" and "Reset All Settings" following the directions from this msdn forum post. Still stuck.

  • According to Mohsyn's suggestion, Looked at Tools >> Options >> Debugging. There didn't seem to be anything checked relating to "Managed or Native Compatibility Mode".

tools>>options>>debugging

  • Blue Shell's answer had the solution!!! It was a matter of launching the visual studio installer, clicking Modify for my installation, going to "Individual Components" and checking ".NET profiling tools"

The solution

The next step WOULD HAVE BEEN to uninstall VS 2022 and re-install it.

like image 799
Angelo Avatar asked Sep 11 '25 05:09

Angelo


2 Answers

In order to be able to show the diagnostics tools window you need to have the .NET net profiling tools installed.

To add this to an existing VS installation go to Control Panel > Programs and Features and change the VS program entry. Then tick the .NET profiling tools checkbox in the installer.

Now you should be able to show the diagnostics tools in VS studio via Debug > Windows > Show Diagnostic Tools.

like image 195
blue shell Avatar answered Sep 15 '25 23:09

blue shell


I agree, this has been a very strange issue. Sometimes, I can analyze a memory dump file, and other times I can't. So I started searching and found the SO question. After verifying that I did, in fact, have the .NET Profiling Tools installed I then asked myself what else could it be. So, I looked at the security setting on the file and gave myself full access, and for whatever reason that did the trick for me.

like image 36
Kabuo Avatar answered Sep 15 '25 23:09

Kabuo