I have used these steps to sign a 3rd party C# .Net Dll: https://blogs.msdn.microsoft.com/miah/2008/02/28/how-to-assign-a-strong-name-to-an-unsigned-3rd-party-assembly/
Using these steps:
ILDASM.exe SomeLibrary.dll /OUTPUT=SomeLibrary.il
ILASM.exe SomeLibrary.il /DLL /OUTPUT=SomeLibrary.dll /KEY=key.snk
But I have noticed that the output dll that is now signed has lost all its original file details:
How can I preserve the original file details?
