thanks jb!

the following code removes the strong name:

module.Assembly.Name.HasPublicKey = false;
module.Assembly.Name.PublicKey = new byte[0];
module.Attributes &= ~ModuleAttributes.StrongNameSigned;

the last bit is missing in your wiki, maybe you want to add it :)
(https://github.com/jbevain/cecil/wiki/StrongName)

thanks!

-- 
--
mono-cecil

Reply via email to