Hi Folks,
I am using two 3rd Party DLLs in the Plugin Reference. The 3rd Party DLLs don't have strong name.
I tried the below :
From a VS.NET command prompt, enter the following:
1. Generate a KeyFile
sn -k keyPair.snk
2. Get the MSIL for the assembly
ildasm SomeAssembly.dll /out:SomeAssembly.il
3. Rename the original assembly, just in case
ren SomeAssembly.dll SomeAssembly.dll.orig
4. Build a new assembly from the MSIL output and your KeyFile
ilasm SomeAssembly.il /dll /key= keyPair.snk
DLLs don't get signed using the above command.
Please help.
Regards,
Rameshwari