Here’s a Visual Studio tip that falls into the category of “obvious once you know it” …

When you get this error:

Found conflicts between different versions of the same dependent assembly.

To find out further information about which assembly has been found, and which projects are affected, look in the Output window under “Build”. You’ll find a dense paragraph of information that tells you everything you need to know.

Firstly, it tells you the two assemblies that conflict:

No way to resolve conflict between

“Niche.Framework.Common, Version=2.0.611.0, Culture=neutral, PublicKeyToken=64979622e305f53d” and

“Niche.Framework.Common, Version=2.0.602.0, Culture=neutral, PublicKeyToken=64979622e305f53d”.

Next, it tells you which one it’s decided to pick:

Choosing “Niche.Framework.Common, Version=2.0.611.0, Culture=neutral, PublicKeyToken=64979622e305f53d” arbitrarily.

Then, advice on what to do if you can’t recompile:

Consider app.config remapping of assembly “Niche.Framework.Common, Culture=neutral, PublicKeyToken=64979622e305f53d”

from Version “2.0.602.0” [C:\Dev\Market Watch\src\DataValidation\Niche.MarketWatch.DataValidation.Model\bin\Debug\Niche.Framework.Common.dll]

to Version “2.0.611.0” [C:\Dev\Market Watch\lib\Niche.Framework\Niche.Framework.Common.dll] to solve conflict and get rid of warning.

The key here is that it tells you where each assembly comes from - which folder they are found within.

In my situation, the version from the lib directory is correct:

C:\Dev\Market Watch\lib\Niche.Framework\Niche.Framework.Common.dll

But the version from the bin directory is incorrect:

C:\Dev\Market Watch\src\DataValidation\Niche.MarketWatch.DataValidation.Model\bin\Debug\Niche.Framework.Common.dll

Knowing this, it’s much easier to whip through the references section of the Solution Explorer and isolate the problem.

Comments

blog comments powered by Disqus
Next Post
Configuration of Log4Net through code  14 Sep 2011
Prior Post
Fixing a Xaml parse exception  08 Sep 2011
Related Posts
Using Constructors  27 Feb 2023
An Inconvenient API  18 Feb 2023
Method Archetypes  11 Sep 2022
A bash puzzle, solved  02 Jul 2022
A bash puzzle  25 Jun 2022
Improve your troubleshooting by aggregating errors  11 Jun 2022
Improve your troubleshooting by wrapping errors  28 May 2022
Keep your promises  14 May 2022
When are you done?  18 Apr 2022
Fixing GitHub Authentication  28 Nov 2021
Archives
September 2011
2011