Hi, How can i get the location of the GAC directory using C#?
Exist an entry in the Windows Registry?
UPDATE
I need the location because, i want to enumerate and analize the assemblies located in the GAC.
Bye.
|
2
|
|
|
|
If you want to enumerate the stuff in the GAC (e.g. writing an system administration tool) your best option is to use the fusion.dll although this requires some interop code on your side. |
||||||||
|
|
|
It is in the %windir%\Assembly folder. Dan got the answer first as far as a code example though. |
||||||||||||
|
|
|
Is it not always edit:
|
||||
|
|
|
Let the runtime manage its assemblies and trust that they'll be there. If you need to install something use gacutil. If you need to uninstall something use gacutil. If you need to access an assembly then add a reference to it in your project. If you need to interact with the GAC on someone else's machine, do what @Dan says and use MSI and friends. Otherwise DO NOT TOUCH THE GAC |
||
dir %windir%\assembly, it sure looks like a set of directories to the rest of the world! – Cheeso Oct 13 at 0:26