Warning: Found conflicts between different versions of the same dependent assembly - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T02:05:22Z http://stackoverflow.com/feeds/question/17806 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/17806/warning-found-conflicts-between-different-versions-of-the-same-dependent-assembl 5 Warning: Found conflicts between different versions of the same dependent assembly ollifant 2008-08-20T12:00:59Z 2008-08-20T12:11:30Z <p>I am currently developing a .NET application, which consists of 20 projects. Some of those projects are compiled using .NET 3.5, some others are still .NET 2.0 projects (so far no problem).</p> <p>The problem is that if I include an external component I always get the following warning:</p> <pre><code>"Found conflicts between different versions of the same dependent assembly". </code></pre> <p>What exactly does this warning mean and is there maybe a possibility to exclude this warning (like using #pragma disable in the source- code files)?</p> http://stackoverflow.com/questions/17806/warning-found-conflicts-between-different-versions-of-the-same-dependent-assembl/17812#17812 4 Answer by Matt Hamilton for Warning: Found conflicts between different versions of the same dependent assembly Matt Hamilton 2008-08-20T12:08:05Z 2008-08-20T12:08:05Z <p>Basically this happens when the assemblies you're referencing have "Copy Local" set to "True", meaning that a copy of the DLL is placed in the bin folder along with your exe.</p> <p>Since Visual Studio will copy all of the dependencies of a referenced assembly as well, it's possible to end up with two different builds of the same assembly being referred to. This is more likely to happen if your projects are in separate solutions, and can therefore be compiled separately.</p> <p>The way I've gotten around it is to set Copy Local to False for references in assembly projects. Only do it for executables/web applications where you need the assembly for the finished product to run.</p> <p>Hope that makes sense!</p> http://stackoverflow.com/questions/17806/warning-found-conflicts-between-different-versions-of-the-same-dependent-assembl/17816#17816 2 Answer by Jon Limjap for Warning: Found conflicts between different versions of the same dependent assembly Jon Limjap 2008-08-20T12:11:30Z 2008-08-20T12:11:30Z <p>This actually depends on your external component. When you reference an external component in a .NET application it generates a GUID to identify that component. This error occurs when the external component referenced by one of your projects has the same name and but different version as another such component in another assembly.</p> <p>This sometimes happens when you use "Browse" to find references and add the wrong version of the assembly, or you have a different version of the component in your code repository as the one you installed in the local machine.</p> <p>Do try to find which projects have these conflicts, remove the components from the reference list, then add them again making sure that you're pointing to the same file.</p>