Questions tagged [debuggervisualizer]

Visualizers are components of the IDE debugger user interface that displays a variable or object in a manner that is appropriate to its data type.

Visualizers are components of the IDE debugger user interface. A visualizer creates a dialog box or another interface to display a variable or object in a manner that is appropriate to its data type. For example, an HTML visualizer interprets an HTML string and displays the result as it would appear in a browser window; a bitmap visualizer interprets a bitmap structure and displays the graphic it represents.

168 questions
0
votes
0 answers

A custom debug visualizer stopped working in VS 2019. VS is unable to load it anymore

I have a custom debug visualizer in my project that derives from the DialogDebuggerVisualizer class. I am using the DebugVisualizerAttribute to annotate the classes that can be supported by the visualizer. Visual Studio 2019 shows the visualizer…
0
votes
2 answers

How can I get the DisplayString field from Debugger.GetExpression?

Background I'm writing a Visual Studio Extension in C# that executes code in the Immediate Window while debugging another application. The expression returns a value that can be a int, a string literal, a class, etc. The application that I'm…
lax48
  • 197
  • 1
  • 10
0
votes
0 answers

How do you create a Debugger Visualizer in VS 2019 for .netcore 3.1

I have a debugger visualizer working for my NETFX 4.7.2 code. I am porting it to .netcore 3.1. I try to run the visualizer and I get the following error: Unable to load the custom visualizer Additional information: Could not load file or assembly…
0
votes
1 answer

How do I switch back to automatically showing variable values in the PyCharm debugger?

I have a PyCharm project in which my __str__ values were taking a long time to calculate. The value display in the debugger window was timing out, so PyCharm prompted me in the debugger window to switch to not automatically showing the value. I…
W.P. McNeill
  • 16,336
  • 12
  • 75
  • 111
0
votes
1 answer

Watch Window doesn't display properties of EntityFramework proxies

The watch window in Visual Studio 2019 has worked fine until yesterday (I believe my laptop may have rebooted over night due to an update pushed by sys admins). Now, when I set a breakpoint and try to evaluate the properties of an entity, the…
0
votes
1 answer

Is there any way to see the dataset and its content in Visual studio code?

In Visual studio we have option to see the dataset using Dataset Visualizer as below image. But in VS code, do we have anything like this? Any plug-in I can install to get this in VS code? Currently in VS code I am getting as like this below…
rafidheen
  • 1,783
  • 1
  • 10
  • 13
0
votes
1 answer

Debugger/Ide for intel 8080 assembly programming

I took hcs12 microcontroller course in which we used code warrior for writing and debugging the assembly codes. Now, I'm taking operating systems course in which we use intel 8080 assembly language. Since I'm used to use compiler for high-level…
concurrencyboy
  • 351
  • 1
  • 11
0
votes
1 answer

How to assign a DialogDebuggerVisualizer to all objects (object)

I have a debug visualizer based on the following walkthrough: https://learn.microsoft.com/en-us/visualstudio/debugger/walkthrough-writing-a-visualizer-in-csharp?view=vs-2017 I need to assigh my visualizer to everything - means all objects inherited…
Allan Xu
  • 7,998
  • 11
  • 51
  • 122
0
votes
1 answer

DebuggerVisualizer debugging in Visual Studio 2010

I am working on a collection debugger visualizer in VS2010 using C# and I cannot find a way to debug the visualizer itself (not the client app). Can anyone give me some help regarding this? Basically I want to set some breakpoints in the debugger…
0
votes
2 answers

What visualizer is currently used

On the internet (Microsoft website, e.g.), there's plenty of information on how to create a visualizer. However, I'd just like to know, which visualizer is currently used by my debugger? For Native code, that question is very simple: Menu "Tools",…
0
votes
0 answers

Writing a debbuger visualizer for pyCaffe?

I use caffe under Python in the Visual Studio IDE and I looking forward writing some custom visualization code for debugging purpose, i.e. inspecting caffe layers, in a similar way to the image inspection extension that exists for openCV, for…
B.B.
  • 1
  • 2
0
votes
0 answers

Class derived from dict not showing nicely in visualizer

Python 2.7 I'm using the below helper class, to access dictionary keys via property name. That is working fine. However it not showing nicely in the visual-studio-code debugger view. It is showing the repl() right next to the variable name, but I…
Juergen
  • 699
  • 7
  • 20
0
votes
1 answer

tensorboard debugger is not working

I have tried to initialise the tensorboard debugger via the following command tensorboard --logdir summarytrain/ --debugger_port 7000 The output from this command is: Traceback (most recent call last): …
0
votes
2 answers

VS Debug Visualizer for WP7

Does Visual Studio 2010 support Debug Visualizers for Windows Phone (Silverlight) development? My visualizer works fine in Windows apps but simply won't show up when debugging WP7 apps (no error message either).
laktak
  • 57,064
  • 17
  • 134
  • 164
0
votes
1 answer

visual studio debugger graphical visualizer c++

are there any good tutorials or training for writing custom visualizers with c# for debugging c++ code? I found an example but the code does not work with visual studio 2015. Took some time trying to debug but I can't see the content of the…
heitho
  • 61
  • 1
  • 7