
moq - issue #329
Versions conflict for Castle.Core.dll when using Windsor in same project
What steps will reproduce the problem? 1.Add reference to Moq.dll from "NET40" 2.Add reference to Castle.Windsor.dll 3.Add reference to Castle.Core.dll (which is required by Windsor) 4.Try use method "Castle.DynamicProxy.Generators.AttributesToAvoidReplicating.Add(...)"
What is the expected output? What do you see instead? Project must compile, but I see compile time error 'Castle.DynamicProxy.Generators.AttributesToAvoidReplicating' exists in both '...\Windsor\dotNet40\Castle.Core.dll' and '...\MoQ\NET40\Moq.dll'
If I use Moq.dll from "NET40-RequiresCastle" folder, which is logically in my situation, I got versions conflict - Moq.dll uses Castle.Core, Version=2.5.0.0, but Windsor uses Castle.Core, Version=2.5.1.0
What version of the product are you using? On what operating system? Moq.4.0.10827.Final.zip is used on Windows7
Please provide any additional information below.
Comment #1
Posted on Nov 11, 2011 by Quick MonkeyUse the Moq.dll that is inside the "NoCastle" folder, so you can use your own version of it.
As long as it's binary compatible with what Moq has been compiled, you'll be fine. Worst case, you'll have to add a runtime binding redirect.
Comment #2
Posted on Nov 11, 2011 by Quick MonkeyYou'll need to use standard .NET binding redirect for the version fix.
Status: WontFix
Labels:
Type-Defect
Priority-Medium