I'm using Windows 8 and I'm trying some things with the Global Assembly Cache (GAC). I created a simple library called AAA, I added a sn key for this in my VisualStudio project, and built it. Later gacutil -i AAA.dll
was run. The result message was that the library is successfully installed in the GAC.
I'm also able to do: gacutil -l AAA
, it returns some information about the library.
But I'm wondering:
How to find the GAC instance file or any GAC reference for my AAA library. I looked in
C:\Windows\Assembly
, but I was not able to find the file.How to use GAC library? I was not able to find AAA dll in the Add-Reference window in Visual Studio, why?