Can I create a Visualizer for debugging that can be used in several versions of Visual Studio?
The Visualizer debugger must reference Microsoft.VisualStudio.DebuggerVisualizers.dll, and for each version of Visual Studio there is a separate version of the assembly. These versions seem to be incompatible. For example, if I built a visualizer that references Microsoft.VisualStudio.DebuggerVisualizers v9.0, it can be used in Visual Studio 2008, but not in Visual Studio 2010.
I am looking for a way to configure at least Visual Studio 2008 and Visual Studio 2010, saving only one project for the visualizer. Duplicating the project and changing only links to Microsoft.VisualStudio.DebuggerVisualizers will work, but this creates a horror of service.
source
share