What is Global Assembly Cache (GAC) and what is the purpose
of it?
Answer Posted / 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 |
Post New Answer View All Answers
What is entity framework in asp net?
I want ask from plz smaple example code for Biztalkk server
What is edm (entity data model)? : Entity framework
What is conceptual model? : Entity framework
What is entity framework? : Entity framework
When will the .net framework 3.0 be released?
What is the difference between .net core and .net framework?
What is RouteConfig.cs in ASP.Net MVC 4?
My organization went through the approval process of supporting the .net framework 2.0 in production. Do we need to go through the same process all over again for the .net framework 3.0? Do I need to do any application compatibility testing for my .net framework 2.0 applications?
Which filter executes first in an asp.net mvc application?
mention in what all scenarios entity framework can be applicable?
What is mapping in entity framework? : Entity framework
Do I need microsoft .net framework?
Where are the routing rules defined in an asp.net mvc application?
Can I remove .net framework?