Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Strong naming in .net

Tags:

.net

What is strong naming and how is it useful in .Net

like image 680
Bhaskar Avatar asked May 13 '09 13:05

Bhaskar


2 Answers

I suggest you read Strong name assemblies can keep you out of DLL Hell:

Strong name assemblies allow developers to simplify component updates and avoid the infamous DLL Hell. Learn about the anatomy of strong names and see how you can use them to ensure version compatibility and security in your .NET apps.

Also see this article for a quick tutorial on how to strong-name an assembly.

like image 80
Andrew Hare Avatar answered Sep 18 '22 14:09

Andrew Hare


It can also be used to ensure that the assembly is not tampered since it's released from the original publisher.

like image 31
mmx Avatar answered Sep 18 '22 14:09

mmx