Signing 3rd Party Assemblies leads to them turnign invisible!
Posted
by Andrew
on Stack Overflow
See other posts from Stack Overflow
or by Andrew
Published on 2010-03-16T20:37:29Z
Indexed on
2010/03/16
20:41 UTC
Read the original article
Hit count: 258
strongname
|visual-studio
Hi All, I followed OJ's instructions here
This allowed me to successfully breakdown, then rebuild and sign some 3rd party DLLs. Here's what I did:
- Dissassembled Old.dll
- Rebuild and signed as New.dll (using the same *.snk that my VS2005 proj is signed with)
- Removed all references in my proj to Old.dll and added references to New.dll
- Replaced 'Imports Old.dll' with 'Imports New.dll'
this final step fails. VS2005 won't recognise my New.dll
Any clues?
© Stack Overflow or respective owner