Open VS command prompt in administrator mode.
1. Navigate to the DLL location
cd C:\Misc\Development\RetSharp.104.1\lib\net4
2. Use ILDasm to disassemble the dll using
ildasm RetSharp.dll /out:RetSharp.il
3. Then Copy your key.snk to the same folder and usie ILASM to merge all into the dll.
ilasm RetSharp.il /res:RetSharp.res /dll /key:key.snk /out:RetSharp.dll
Advertisements