Assembly Strong Name

  • Thread starter Thread starter Tony
  • Start date Start date
T

Tony

Hi all,

Would someone tell me what is "strong name of an assembly"?

Tony
 
hi

Strong-Named Assemblies

A strong name consists of the assembly's identity — its simple text name,
version number, and culture information (if provided) — plus a public key and
a digital signature. It is generated from an assembly file (the file that
contains the assembly manifest, which in turn contains the names and hashes
of all the files that make up the assembly), using the corresponding private
key. Microsoft® Visual Studio .NET® and other development tools provided in
the .NET Framework SDK can assign strong names to an assembly. Assemblies
with the same strong name are expected to be identical.

You can ensure that a name is globally unique by signing an assembly with a
strong name. In particular, strong names satisfy the following requirements:

regards
Ansil
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top