comesuccingfuccslot
comesuccingfuccslot

Reputation: 717

Disabling an annoying debugger notification in Visual Studio 2017

Whenever I start debugging with heap profiling turned on in the Diagnostics tools in my Visual Studio 2017, I get the following notification(s):

Heap profiling is enabled notification This is quite annoying, since I was made aware of the performance impact these debugging methods might have on my program the first 10 times I was presented with such notifications. To make things worse, the notifications do not disappear by themselves, but instead I have to close them everytime I've been debugging.

Where might I find an option to turn these things off, so I might profile the heap in peace?

TO BE CLEAR: I do not wish to disable heap profiling. I wish to disable the warning/notification I am presented with whenever I profile the heapiness.

Upvotes: 8

Views: 472

Answers (1)

Some notifications in Visual Studio 2017 have Don't Show Again option like this one: enter image description here

If the solution to your issue still not available in the latest version of Visual Studio 2017 15.3. You can report this in Visual Studio 2017. Let them know to add Don't Show Again option in Heap Profiling notification.

Here are the steps on how to report a problem with visual studio 2017.

Upvotes: 2

Related Questions