1
Reply

How to sign an assembly with strong name?

Chirag Satasiya

Chirag Satasiya

Nov 19, 2016
347
0

    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")]

    Chirag Satasiya
    November 19, 2016
    0