What is strong name and which tool is used for this ?
Answer Posted / kamlesh sharma
A common use of attributes is to provide a strong name for
an assembly. assemblies that have a strong name can be
placed in the global assembly cache. The global assembly
cache enables a single assembly to be shared among multiple
projects. The global assembly cache can be used to share
multiple copies of the same assembly,
tool for that
command
sn -k mykey.snk
and then add this key in assembly information like
[assembly: AssemblyKeyFile("mykey.snk")]
and paste in global assembly catch
like
gacutil /i filename.dll
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What are ajax helpers in mvc?
What is meant by tempdata in mvc?
what is complex type?
Explain how to use multiple submit buttons in ASP.Net MVC?
Explain the role of assembly in the .net framework.
Explain two instances where routing is not implemented or required?
What are the 2 popular asp.net mvc view engines?
What is entity framework in asp net?
What is basic authentication in web api?
Can I add mvc testcases in visual studio express?
List out few different return types of a controller action method?
Can a view be shared across multiple controllers? If yes, how we can do that?
Explain the 'page lifecycle' of an ASP.NET MVC?
Can we change web.config settings from iis?
How to change the action name in ASP.Net MVC?