views:

16

answers:

0

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?