Hi guys,
I was wondering if there was any way to reference the path of a DLL in the Global Assembly Cache. Currently I cause my builds to leave a copy of the DLL they generate in the same /bin directory. But when my application is deployed there are certain dlls I want to place in the Global Assembly Cache.
Currently I use
VB Code:
System.Reflection.Assembly.GetExecutingAssembly().Location
I need to reference a DLL by its path to load it using reflection. Obviously I need to load the path of the DLL in the GAC rather than the path of the currently executing assembly. Anyone know how?


Reply With Quote