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

Can you write a class without specifying namespace?

1 Answers  


What is the difference between asp.net & vb.net and explain architecture?

1 Answers  


What is the difference between the C#.NET and VB.NET?

6 Answers   MCN Solutions,


Is atl redundant in the .net world?

1 Answers  


What is Method Overriding? How to override a function in C#?

1 Answers  


Can we use data reader to bind gridview?

3 Answers   TCS,


What is a delegate, How many types of delegates?

4 Answers  


What is clr in .net?

1 Answers  


What is the base class of Button control?

2 Answers  


Why is .net used?

1 Answers  


What is alias ? Is it used in .Net ?

1 Answers   MCN Solutions,


What are object pooling and connection pooling and difference?

3 Answers   TCS,


Categories