What is Global Assembly Cache (GAC) and what is the Purpose
of it?



What is Global Assembly Cache (GAC) and what is the Purpose of it?..

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 ?    3 Yes 0 No

Post New Answer

More Dot Net General Interview Questions

What?s a Windows process?

1 Answers  


Explain the garbage collection process?

0 Answers  


Explain assemblies in .net?

0 Answers  


How is .net able to support a lot of languages?

0 Answers  


What is the need of OLE-automation?

0 Answers   CGI,






How to write an MMC snap-in for my Windows service?

1 Answers  


Explain About GDI object ?

0 Answers   TISL,


What is the difference between response.write & response.output.write?

0 Answers  


How will u load dynamic assembly? How will create assemblies at run time?

1 Answers  


What is Garbage Collection in .Net and what is the Garbage collection process?

4 Answers  


How can you clean up objects holding resources from within the code?

2 Answers   Wipro,


What is common language specification (cls)?

0 Answers  


Categories