Possible Duplicate:
What is the GAC in .NET?
What is Global Assembly Cache and how would I add assemblies to it?
|
1
|
What is Global Assembly Cache and how would I add assemblies to it?
|
|||
|
|
closed as exact duplicate by Rik, George Stocker, Justin Niessner, Jeff Sternal, Kobi Oct 22 at 12:51 |
|
|
Try the following link http://support.microsoft.com/kb/815808 |
||
|
|
|
|
The global assembly cache (GAC) stores assemblies specifically designated to be shared by several applications on the computer (msdn page). You can use a developer tool called the Global Assembly Cache tool (Gacutil.exe) to register a shared assembly:
|
||
|
|
|
|
it is the central location for components and runtime assemblies on windows. You add to the GAC by dragging and dropping assembly files to it. When referencing you need to be careful to reference the exact version number and any keys. |
||
|
|
|
|
The answer to both questions can be read at MSDN: Global Assembly Cache.
|
|||
|
|