louiscarl
louiscarl

Reputation: 91

What do the red exclamation mark icons in front of references mean in VS2010?

In Visual Studio 2010 project property pages, if I select Common Properties and Framework and References for a C++ project, I can see all the references from a project.

They usually have this icon: normal reference
Sometimes, though, some references appear as this: red exclamation mark

I tried to google it or find any documentation about it in the msdn documentation about references, but cannot find anything related to this. Does someone know about this? Thank you very much in advance!

Upvotes: 9

Views: 3928

Answers (2)

dwedemeyer
dwedemeyer

Reputation: 61

This happens also if you had VS2010 SP1 and then install .net 4.5. They changed the handling of this in a way that causes problem in VS2010. (.net 4.5 is installed with VS2012)

Upvotes: 6

Ris Adams
Ris Adams

Reputation: 1355

I believe it is because the referenced assembly is a different version than your target application. I receive the same thing if I reference a .net 4.0 assembly from a .net 3.5 project.

Upvotes: 4

Related Questions