vote up 0 vote down star

A project won't compile because of a missing assembly. The file that causes the error has a

using Microsoft.VisualStudio.DebuggerVisualizers;

The VisualStudio part is marked in red. What do I have to install to fix it? To me it sounds like something that would have come with Visual Studio, but that is what I am using, so it is installed...

Clarification: I know what assembly it exists in, and the reference is added earlier to the project references. But how do I get it? What SDK do I have to install? Or have I forgotten to check something off when I installed Visual Studio?

flag

@adrianbanks appears to have the correct answer here. The physical assembly lives in %Program Files%\Microsoft Visual Studio 9.0\ Common7\IDE\PublicAssemblies folder (assuming VS2008). (For VS2005, change the 9.0 to 8.) – Scott Dorman Aug 16 at 18:33

2 Answers

vote up 4 vote down check

You should be able to find it in the "Add Reference" dialog in the .Net tab.

If not, the Microsoft.VisualStudio.DebuggerVisualizers.dll lives in the Common7\IDE\PublicAssemblies subdirectory of Visual Studio's installation directory. You could add it manually from there.

link|flag
and where does it come from? – Svish Aug 16 at 18:33
Apparently, it ships with Visual Studio. It might be that you turned off a feature when you installed Visual Studio which has caused it to not be present. – adrianbanks Aug 16 at 18:51
hm... will have to try reinstall it or something then I guess... – Svish Aug 16 at 19:15
vote up 0 vote down

You should be able to find the assembly under the ".NET" list of assemblies in the "Add Reference" dialog.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.