Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I convert an assembly to a Strong-Named assembly without recompiling?

I found Microsoft KB article:

But it looks like they want me to recompile after I have created a key pair. Is there any way to just convert the assembly to a strong named assembly without recompiling?

like image 925
Abe Miessler Avatar asked Nov 18 '10 16:11

Abe Miessler


2 Answers

You can use the Signer tool to sign an unsigned assembly.

like image 193
Albin Sunnanbo Avatar answered Sep 21 '22 09:09

Albin Sunnanbo


You can.

Use the sn.exe and al.exe tools to strong name the assembly .

See this howto.

like image 25
Oded Avatar answered Sep 18 '22 09:09

Oded