Spiga

随笔档案 - 2011年7月

How to sign dll directly

2011-07-05 13:39 by 俺是老Z, 6 visits, 网摘, 收藏, 编辑
摘要:Step 1: Dis-assemble the assemblyildasm myTest.dll /out:myTest.ilStep 2: Re-Assemble using your strong-name keyilasm myTest.il /res:myTest.res /dll /key:myTest.snk /out:myTestSN.dllThis code work perfectly to assign strong name.for verification you can use following command,sn -vf myTestSN.dll 阅读全文