vote up -1 vote down star
1

Possible Duplicate:
What is the GAC in .NET?

What is Global Assembly Cache and how would I add assemblies to it?

flag

67% accept rate

closed as exact duplicate by Rik, George Stocker, Justin Niessner, Jeff Sternal, Kobi Oct 22 at 12:51

4 Answers

vote up 0 vote down check

Try the following link http://support.microsoft.com/kb/815808

link|flag
vote up 1 vote down

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:

gacutil.exe /i <assemblyName>
link|flag
vote up 1 vote down

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.

link|flag
vote up 4 vote down

The answer to both questions can be read at MSDN: Global Assembly Cache.

Global Assembly Cache

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.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.