vote up 1 vote down star
1

I'm maintaining a c#.Net (vs2005) library, let's call it fooLib, developed by a coworker. Now management has decided that we should change it's name to, say, barLib.

So I have renamed it, changed some of the metadata (copyright info, etc), registered it in gac, removed the reference and added it again in each project which uses it, and voila!

So far, so good, but there's a project which uses it, that gives me some weird error when linking the Debug version, while the Release works like a charm, without a warning. It gave me a way long error message telling me that it cannot found fooLib.dll (when it should be searching barLib.dll) and told me that linking log was deactivated, and the way to activate it. So I did, but the only new information returned is the list of paths in which it's searching for the wrong file. Any idea how can I fix this without having to rebuild the solution from scratch?

flag

1  
Did you try to remove reference to the renamed library and add fresh one? – maciejkow Jul 27 at 9:48
Of course. Thanks anyway. – Jaime Pardos Jul 27 at 9:56

2 Answers

vote up 2 vote down check

Take a look in the project file - make sure nothing odd is going on there for different configurations.

Build the solution from "ultra-clean" - manually get rid of all the bin/obj directories.

When you say there's a problem "linking" the Debug version, do you mean it fails at execution time rather than compile-time?

link|flag
Nope, it doesn't compile. I have an spanish error message but I'll try to translate it: Error 1 The assembly [project.dll] couldn't convert itself to a type library. The type library exporter detected an error when processing [project.class] Error: The type library exporter couldn't load type [project.class] (error: FileNotFoundException: File or assembly could not be loaded 'fooLib, ...'or one of its dependencies. The system could not find the specified file. Then it said something about the linker logging. I realize now that it must have something to do with COM Interop. – Jaime Pardos Jul 27 at 9:54
BTW, project.class (name ommitted for brevity) is a class which inherits from a fooLib class. – Jaime Pardos Jul 27 at 9:58
Ah, I didn't realise it was a COM API. That probably changes things. Have you rebuild the derived class? – Jon Skeet Jul 27 at 10:19
What do you mean with 'rebuild the derived class'? I have rebuilt the whole project and AFAIK I can't build a single class. – Jaime Pardos Jul 27 at 10:39
Which project does "project.class" live in? The one you're trying to rebuild, or a different one? You need to rebuild that first, as it declares a dependency to the old library. – Jon Skeet Jul 27 at 11:00
show 2 more comments
vote up 0 vote down

It seems that changing the build target from 'Any CPU' to 'x86' or 'x64', it works. Changing the Release Build (which was set to x86) to 'Any CPU' it fails with same error

But it was working as it was before the library's name change. Seems quite frightening...

Edit: Now it's getting really funny. If I set the project config to "Release|Any CPU" with register for COM interop unchecked, it compiles fine. Then I can go to debug, mark the COM checkbox, and it still works fine. Then I return to release, with the interop option checked, and it fails. I return to debug, and it fails, too.

link|flag

Your Answer

Get an OpenID
or

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