Assembly sign problem...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Ok, I created a class library that uses the AxWebBrowser object and therefore it uses the SHDoc assemblies. My control creates an IE look-a-like user control and exposes this control. I want to sign this assembly but when I try to do that I get an error because the SHDoc assembly is not signed itself... Why can't I sign an assembly if a satelite assembly is not signed? Is it because if I try to move my assembly into the GAC it will try to pull also the unsigned assemblies which will fail? Is there a way I can go around this? I wonder why those assemblies are not signed in the first place

thanks

iulian
 
Iulian,

The AxImp.exe tool can create stong named wrappers for you (using its
/keyfile or /keyname options).

If you're using C#, you can also set the Wrapper Assembly Key File
option in the project properties dialog before referencing the ActiveX
control.



Mattias
 
Back
Top