How to sign an assembly with strong name?
Chirag Satasiya
Assemblies are signed with help of strong name key file.Strong name key files are having an extension of .snk. Referring the .snk file in your project will make your assembly as strongly named assembly. Open “AssemblyInfo.cs” file from your project. Add following line at the end of you code: [assembly: AssemblyKeyFile("c:\ DemoKeyFile.snk")]