Craig Johnston
Craig Johnston

Reputation: 5563

VS2005: Found conflicts between different version of the same dependent assembly

What does it mean if I receive this warning? Does it mean the project is referencing the same assembly from different files?

Upvotes: 0

Views: 314

Answers (1)

Josh
Josh

Reputation: 69272

This can commonly occur if a "project reference" has somehow reverted to a file reference. If you have a project that is referencing other projects, try removing those references and re-adding them. It can also occur if two dependent projects each reference a different version of a third assembly.

Upvotes: 1

Related Questions