Search code examples
c#.net.net-3.5comcom+

How can I sign a third party COM dll with strong name


All I need to create a WCF service that talks to third party com application. How do I sign this com with strong name so that I can Host this as a COM+ application .


Solution

  • You need to create a signed interop for the com DLL.

    tlbimp yourcomdll.dll /keyfile:”mystrongnamekeyfile.snk” /namespace:yourcomdll /out:Interop.yourcomdll.dll