Consider the following scenario:
I have two assemblies:
- Assembly named A.dll located in folder Fold_A
- Assembly named B.dll located in folder Fold_B
A.dll depends on B.dll and A is COM visible when I'm performing command:
regasm A.dll /codebase
It fails, but when B was copied into fold_a - the command succeeded.
Is there some way to perform without copying assemblies on which depends assembly to be registered (by regasm)?
There is already question related to the issue: Multiple search paths for assemblies not in the GAC when using REGASM & COM