nectar
nectar

Reputation: 9679

how to assign Strong Name to an Assembly?

I have created strong name using -

sn -k C:\strong.snk

nao how to assign this key to any assembly? and where I have to use gacutil?

Upvotes: 2

Views: 1484

Answers (1)

Alastair Pitts
Alastair Pitts

Reputation: 19601

This is going on the assumption of a .NET Framework project in Visual Studio.

  • Project Menu
  • [Project Name] Properties
  • Signing
  • Check "Sign the assembly"
  • Click the "Choose a strong name key file:" drop down then click ""
  • Find your key and select!
  • ...?
  • Profit!

Upvotes: 3

Related Questions