I am experiencing a strange problem with moles in combination with one of our assemblies. I get the following error during the build: "Signature of the body and declaration in a method implementation do not match. Type: 'MyAssembly.EntitiesModel'. Assembly: 'MyAssembly, Version=0.0.0.1, Culture=neutral, PublicKeyToken=thekey'."

I am using the options Diagnostic="true" and Verbosity="Noisy" in the moles file and also tried all possible combinations of attributes like ReflectionOnly="true" and x86="true" but that doesn't seem to make any difference:

Moles : info : configuration : diagnostic is on (TaskId:125)
Moles : info : metadata : incompatible assembly bitness, using reflection only (TaskId:125)
Moles : info : metadata : loading C:\binaries\current\MyAssembly.dll (reflection only) (TaskId:125)
Moles : info : compilation : output assembly name: MyAssembly.Moles (TaskId:125)
Moles : warning : metadata : failed to load assembly MyAssembly:
Moles : warning : metadata : Signature of the body and declaration in a method implementation do not match. Type: 'MyAssembly.EntitiesModel'.  Assembly: 'MyAssembly, Version=0.0.0.1, Culture=neutral, PublicKeyToken=thekey'.
Moles : error : code : assembly contains no types or failed to load properly
00:00:00.81> moles generator 1 errors, 2 warnings (TaskId:125)

Also tried the options supplied here: http://social.msdn.microsoft.com/Forums/is/pex/thread/4d0033a1-9671-4a24-964d-fed920995220 However, it does seem that the current version (0.94.51023.0) does not support the attribute Disable on the compile node.

It might have something to do with the fact that there are explicitly implemented interfaces in this class, but I am not able to get a better located error, although the post refered above states that is should be fixed in the current version. The class that produces the errors contains a lot of methods, making it difficult to find the method that causes the issue.

Part of the decompiled class is:

public static BackendConfiguration GetBackendConfiguration();

private void Telerik.OpenAccess.IUnitOfWork.Add(object );

private void Telerik.OpenAccess.IUnitOfWork.ClearChanges();

private void Telerik.OpenAccess.IUnitOfWork.Delete(object );

private IQueryable<T> Telerik.OpenAccess.IUnitOfWork.GetAll<T>();

private T Telerik.OpenAccess.IUnitOfWork.GetObjectByKey<T>(ObjectKey );

private void Telerik.OpenAccess.IUnitOfWork.SaveChanges();

Unfortunately the explicitly implemented interface is not in the source code and is added automatically by the compiler, so I have no way to temporarily comment out this code to test if the explicitly implemented interface is the problem.

Is there a way to find out which exact method is causing the problem?

Found a post online stating that I should run the tool 'peverify', which I tried, but it told me that everything was fine.

Any help will be greatly appreciated!

link|improve this question
Start with a new project\solution and start adding things to it incrementally until you get the error. Then you'll know the last thing you changed was the culprit. – Rami A. Feb 18 at 3:52
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.