Explain the steps to add assemblies to the Global Assembly Cache. a. sn -k StrongNameFile.snk – creates a strong key b. [assembly:AssemblyKeyFile("StrongNameFile.snk")] – tag the assembly wid he string key. c. gacutil /i AssemblyName.dll – install the assembly to GAC.
|