vote up 0 vote down star

My application (pure DotNET 2.0) is referencing another pure DotNET 2.0 dll which is PInvoking into an unmanaged (C++ 2005) dll. On some computers this works fine, on others there is a consistent error message:

Could not load file or assembly 
'C:\Program Files\Rhinoceros 4.0\Plug-ins\Grasshopper\rhcommon_c.dll' or one of its dependencies. 
The module was expected to contain an assembly manifest.

Assembly Manifest Error

I've been googling this error, but it seems that other people are running into it because they have multiple files which are named the same. This is not the case here. There is only one RhinoCommon.dll and only one rhcommon_c.dll

The computer has the latest Microsoft C Runtimes installed.

Much Obliged, David


Edit: The error message was wrong. It was in fact another dll which was missing. Very weird that DotNET got so confused about this.

flag

1 Answer

vote up 0 vote down check

Try open your application in Dependency Walker. it should point out which of the dll's is missing.

link|flag
I did, and it found 2 missing delay-load dependencies: ( en.wiki.mcneel.com/content/upload/… ) When I run the same test on a computer that works correctly, I get a single (different) missing dependency (IESHIMS.DLL) Is this information important? – David Rutten Oct 14 at 22:45
I don't actually think there are missing dlls. It's a problem with loading existing dlls. The thing that confuses me about this particular error is that it is looking for an Assembly Manifest on a C++ only dll. I was under the impression only DotNET dlls contained assembly manifests. – David Rutten Oct 14 at 22:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.