I have a VB.Net project which needs to use a third party DLL for which there also an interop assembly. So I have something like this:
Hummingbird.DM.Server.Interop.PCDClient.dll
PCDClient.dll
I tried adding the reference to the interop directly in the project, but on running the file I got a COM not registered error.
So, I tried registering the interop as follows:
gacutil /if "C:\....\Hummingbird.DM.Server.Interop.PCDClient.dll"
regasm "C:\....\Hummingbird.DM.Server.Interop.PCDClient.dll"
Even after restarting VS, the assembly is still not visible.