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

Filed under:
|

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:

  1. Dissassembled Old.dll
  2. Rebuild and signed as New.dll (using the same *.snk that my VS2005 proj is signed with)
  3. Removed all references in my proj to Old.dll and added references to New.dll
  4. 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

Related posts about strongname

Related posts about visual-studio