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?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Yes, you should register all referenced assemblies in the GAC which are not already present there.

Remark: System.Collections is a namespace and not an assembly which is part of the BCL and already present in the GAC.

link|improve this answer
So do I still need to register System.Collections? I would think not but when I look in my GAC I see a ton of System.Whatevers. I am assuming those are all namespaces too? – Abe Miessler Nov 22 '10 at 22:28
As I said System.Collections is not an assembly. It is a namespace which is contained in the mscorlib assembly which is already present in the GAC. Namespaces should be used like: using System.Collections; in the top of your source file. – Darin Dimitrov Nov 22 '10 at 22:30
Sorry, previous comment was posted while incomplete. I understand that it is NOT and assembly. My Point is that I see a bunch of namespaces (System.Data for instance) in my GAC which makes me wonder if System.Collections should be in there. – Abe Miessler Nov 22 '10 at 22:34
@Abe Miessler, System.Data is an assembly. System.Collections is not. You can deploy only assemblies into the GAC. – Darin Dimitrov Nov 22 '10 at 22:35
1  
Personally I prefer Reflector than MSDN. – Darin Dimitrov Nov 22 '10 at 22:45
show 2 more comments
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.