What is Global Assembly Cache (GAC) and what is the purpose
of it?
Answers were Sorted based on User's Feedback
Answer / guest
Each computer where the common language runtime is installed
has a machine-wide code cache called the global assembly
cache. The global assembly cache stores assemblies
specifically designated to be shared by several applications
on the computer. You should share assemblies by installing
them into the global assembly cache only when you need to.
Steps
- Create a strong name using sn.exe tool
eg: sn -k keyPair.snk
- with in AssemblyInfo.cs add the generated file name
eg: [assembly: AssemblyKeyFile("abc.snk")]
- recompile project, then install it to GAC by either
drag & drop it to assembly folder (C:\WINDOWS\assembly OR
C:\WINNT\assembly) (shfusion.dll tool)
or
gacutil -i abc.dll
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / zeenat
GAC is a repository of all the .net shared assembly.The
assemblies stored in GAC can be shared by all the .NET
application.
| Is This Answer Correct ? | 9 Yes | 1 No |
Hello guyz, I have interview scheduled next week on .Net Framework 1.1? Can any one please provide a) list of interview questions on .net frame work 1.1? b)basic differences between .net framework 1.1 and 2.0 and 3.5 c)the topics that i need to concentrate while preparing Thanks in advance
What is GUID and why we need to use it and in what condition? How this is created
How do I install .net framework?
What is the use .glimpse in mvc?
What is .net framwork? what is web application? what is CLR? How does work CLR & wht is work of CLR? What is compile? wht is thread? what does use in .net?
Is the following route definition a valid route definition? {controller}{action}/{id}
What are the 2 ways of adding constraints to a route?
mention what is csdl, ssdl and msl sections in an edmx file?
How do you enforce garbage collection in .NET
What are the components required to create a route in mvc?
what are generics? Without generics what are the disadvantages in 1.1?
3 Answers HP, iSoft, nTech Solutions,
what is MVC pattern?