Reputation: 105037
I know it is possible to create Debugger Visualizers since Visual Studio 2005.
Now, what I'd like to know is if it is possible to use our Debugger Visualizers without having to put them in Visual Studio's folder.
Although it is useful to have Visualizers for .NET's types as Bitmap, Image, arrays, etc, I wouldn't like to put in VS' folder Debugger Visualizers for types that only have meaning for my current project.
Thanks
Upvotes: 4
Views: 892
Reputation: 26873
Documentation says it all:
To install a visualizer
Locate the DLL that contains the visualizer you have built.
Copy the DLL to either of the following locations:
InstallPath\Microsoft Visual Studio 10.0\Common7\Packages\Debugger\Visualizers
My Documents\Visual Studio 2010\Visualizers
If you want to use the visualizer for remote debugging, copy the DLL to the same path on the remote computer.
Upvotes: 7