How does the linker deal with strong named assemblies?
Our linker deals with strong named assemblies automatically, no extra work is required. Usually, attaching a strong name signature to your code involves two steps: (1) create the strong name key using the SN utility: sn -k sample.snk (2) compile your assembly with the key by adding a declaration to the assembly to indicate the location of the key file, as shown below, C#: [assembly: AssemblyKeyFile(“sample.snk”)] class StrongNameTest { … } VB.NET: