tags:

views:

135

answers:

1

I have a dll that i created using C++ and for a reason my dll should be placed in the GAC. for all other dll's created with managed code, i sign them and drop them in the GAC, how can i do the same with the c++ dll?

Thanks for your quick help.

+1  A: 

Check this link

How to deploy unmanaged dll into GAC

Anuraj
Thanks for the link. But what if i have multiple managed.dlls that are using the same unmanaged.dll?On the other hand, do you how to do that from Visual studio (linking them together?) (C# project)
Zee99
Check this link : http://social.msdn.microsoft.com/Forums/en-US/clr/thread/d87e7dd8-c687-40ae-8f34-b862de9072c7
Anuraj