We use moq and AutoMoq with mstest, and since upgrading to VS2012 and ReSharper 7, we the tests run fine with mstest, but fail when using the R# unit test runner with:
Test method [...] threw exception:
System.IO.FileLoadException: Could not load file or assembly
'Moq, Version=3.1.416.3, Culture=neutral, PublicKeyToken=69f491c39445e920'
or one of its dependencies. The located assembly's manifest definition does not
match the assembly reference. (Exception from HRESULT: 0x80131040)
AutoMoq is built against Moq 3.1.416.3 and we use 4.0.10827.0, and have an assembly redirect in the app.config. This runs fine both locally with mstest and remotely on the TFS build server, but not when using the R# unit test runner.
After a good amount of searching, I have only found a single thread on the JetBrains forum, without a resolution, so I'll pose the issue to SO too.