Reputation: 9926
There is something i don't understand about the GAC
files location ...
When i install some assembly in the GAC
- where will be actually the assembly location ?
Upvotes: 3
Views: 6076
Reputation: 24422
They are in
%windir%\Assembly
which is displayed via a shell extension in explorer.
If you want to see the underlying physical files map a drive to the location eg.
\%compname%\c$\Windows\assembly
and you'll get the full view.
Upvotes: 1
Reputation: 60952
It's %WINDIR%\Assembly
P.S. The best way to look at this folder is with Windows Explorer, because custom file managers may show unneeded technical folders etc.
Upvotes: 2
Reputation: 2884
The assembly cache is usually stored in %windir%\assembly
.
Upvotes: 1