Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is GAC a memory area or hard disk area?

Tags:

c#

gac

Is the GAC a memory area or hard disk area (C:\windows\Microsoft.NET\Assembly\...) I am confused by the word cache in GAC?

like image 216
northTiger Avatar asked May 16 '10 14:05

northTiger


1 Answers

GAC is a folder:

C:\Windows\Microsoft.NET\assembly

The assemblies stored in the folder(s) under that folder are in the GAC. You add assemblies to the GAC by signing them, then using gacutil to add them. The GAC is one of the locations a managed assembly will look for any external references.

like image 87
Dave Swersky Avatar answered Nov 08 '22 20:11

Dave Swersky