I have a debug visualizer based on the following walkthrough:
I need to assigh my visualizer to everything - means all objects inherited from System.Object. I tried the following attribute:
[assembly: System.Diagnostics.DebuggerVisualizer(
typeof(ObjectJsonVisualizer.MyVisualizer),
typeof(ObjectJsonVisualizer.MyObjectSource),
Target = typeof(object),
Description = "Object Json Visualizer")]
But I am not seeing the option in the magnifier that Visual Studio's "Quick Watch" shows.
How can I assign a DialogDebuggerVisualizer to all objects (System.Object) ?