I recently had to register an assembly in my GAC for a custom sharepoint job I wrote. Once installed it began throwing an error saying that it could not load an assembly "or one of its dependencies". Do I need to register any of the supporting assemblies (System.Collections for instance) in the GAC in order to get my main assembly recognized?
|
feedback
|
|
Yes, you should register all referenced assemblies in the GAC which are not already present there. Remark: | |||||||||||||
feedback
|
|
All of the assemblies that comprise the .NET Framework should already be in the GAC. So the assembly that contains System.Collections should not need to be registered. However, any custom built assemblies that your code depends on should be put in the GAC. | |||
|
feedback
|