Phil Leggetter - Software Consultant » Page 'How to sign an unsigned DLL'

How to sign an unsigned DLL

Taken from: http://forums.microsoft.com/MSDN/showpost.aspx?postid=420884&siteid=1

Step 1: Dis-assemble the assembly
ildasm myTest.dll /out:myTest.il

Step 2: Re-Assemble using your strong-name key
ilasm myTest.il /res:myTest.res /dll /key:myTest.snk /out:myTestSN.dll

This code work perfectly to assign strong name.

for verification you can use following command,
sn -vf myTestSN.dll

Bookmark and Share

Leave a comment

XHTML - You can use:<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

© 2008 Phil Leggetter – Software Consultant is powered by WordPress