Development using visual C# -->Weak named dlls in GAC
Hi guys,
I am trying to develop an IE toolbar using C# using the Pavel Zolnikov's BHO method given here :-
http://www.codeproject.com/csharp/dotnetbandobjects.asp?df=100&tid=1608121&forumid=3788&exp=1&mpp=50&select=1608121#xx1608121xx
and VS 2005 version given at
http://www.codeproject.com/csharp/BandObjects20.asp?df=100&tid=1537400&forumid=306921&exp=1&mpp=50&select=1537400#xx1537400xx
Now, the problem is that I am using two DLLs that are not strong typed. So these DLLs are not put into the GAC and I cannot see the toolbar when I reference to the objects from the DLLs. Is there any way I can put weak named DLLs into the GAC ? Please help me out here. Its very urgent..
[1347 byte] By [
prayag] at [2008-2-21]
iI just solved the problem accidently. I used the dll in another project. Since it was COM component it was very easy to work with. When I built the application I had Interop.WakNamedDll in the bin folder of the application. And this somehow was strong named because i had signed the new application.
I imported it into my project installed it in GAC and voila it was working fine. 
Thanks for the help.