代码改变世界

随笔档案-2011年07月

How to sign dll directly

2011-07-05 13:39 by 俺是老Z, 173 阅读, 收藏,
摘要: 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 阅读全文