I'm trying to build my project and I've suddenly started getting the following error when the project builds and the "Register for COM interop" property is ticked.

The assembly "c:\MyAssembly.dll" could not be converted to a type library. Type library exporter encountered an error while processing 'SomeType, MyAssembly'. Error: Referenced type is defined in managed component, which is imported from a type library that could not be loaded (type: 'OtherType'; component: 'c:\OtherAssembly.dll').

Nobody else on the team gets this error, its just me! Clearly I have done something odd to my machine, however the brute force approach of completely removing / deleting and re-adding everything I could think of made no difference, and so I am resigned to actually understanding this error (what a drag!)

So:

  • What does this error actually mean
  • Where should I look next for additional / more specific diagnostic information on what is wrong?
link|improve this question

1. Does the project have any external dependencies that are not configured properly on your machine? 2. What does OtherType look like? – jgauffin Aug 23 '10 at 7:46
@jgauffin, your going to need to be more specific I'm afraid - 1. My guess is yes because its broken, 2. Its an interface, other than that I'm not aware of any notable features. – Justin Aug 23 '10 at 7:58
feedback

2 Answers

In my case, this error occured because I had manually registered a COM-server via regsvr32. When I later moved the folder containing the dll, I forgot to update the registry (i.e. unregister and re-register the COM-server).

Reregistering the server fixed the error.

link|improve this answer
feedback

I had this problem to. I just did the same, gactutil /u (for the uninstall) and gacutil /i (for the install) and the problem was solved

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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