I have a C# .NET DLL that is exposed through COM Interop for which I have generated a manifest file. The DLL is being consumed through an Excel VBAProject using CreateActCtx
and CreateObject
to create my objects.
Everything works fine, however... I need to call regasm MyProject.dll /codebase
or register with GAC. Otherwise I get ActiveX component can't create object
or error in dll
errors.
Is it possible to use a .NET DLL without having to register the DLL at all? I was able to do this previously with a VB6-based DLL and a manifest file.