Installing to the GAC

  • Thread starter Thread starter Mark Irvine
  • Start date Start date
M

Mark Irvine

Hi,

Does anyone know a good article on how to do this? I have read the C#
article on the MS support site, however I still have a few questions:

Does the dll always have to be located in a bin directory?
From my early attempts at installing to the GAC, I noticed that the codebase
property held the location of the dll. However some of the other assemblies
has noting in the codebase property, why is this?

Many thanks,

Mark
 
1) No, dll's do not have to be located in a bin directory.
2) the codebase CAN hold the location of the dll, if no info is provided the
default locations are checked (e.g. GAC, current directory)
 
Back
Top