Can the GAC be shared between multiple machines?
As per my knowledge shared assembly can be access开发者_如何学编程ed for multiple application from same machine. Is it possible to access GAC from different machine ?
No.
The GAC is a per machine cache.
GAC on Wikipedia
I would say clearly not, Global Assembly Cache is global for all application in the same machine, each machine needs to have the assembly locally available if your application is loading them from the GAC.
精彩评论