Abe Miessler
Abe Miessler

Reputation: 85116

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?

Upvotes: 5

Views: 1211

Answers (2)

Oded
Oded

Reputation: 499262

You can.

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

See this howto.

Upvotes: 4

Albin Sunnanbo
Albin Sunnanbo

Reputation: 47058

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

Upvotes: 5

Related Questions