I have a collection of assemblies using reflection. I want to loop through them, but I would like to ignore the .NET framework or ASP.NET framework DLL's. Is there an attribute on the assembly that marks that its from the .NET framework? Or any other designation?

I was looking at the name, and if the name of the assembly starts with System, Microsoft, or mscorlib, I am ignoring it. But I was wondering if there is a flag I can use to make this even easier?

link|improve this question

Related: stackoverflow.com/questions/52134/… (Will let @Brian decide if duplicate and/or if VTC makes sense here) – Ruben Bartelink Mar 19 '11 at 23:35
feedback

2 Answers

up vote 0 down vote accepted

You might find this answer to a related question useful

link|improve this answer
Thanks, I was looking at the name, but I'll have to see if this is shorter. – Brian Mains Mar 20 '11 at 0:11
feedback

Does the "GlobalAssemblyCache" property qualify for your requirement? http://msdn.microsoft.com/en-us/library/system.reflection.assembly.globalassemblycache.aspx

Propably also depends on how you are loading your assemblies collection. If the above mentioned suggestion doesn't work for you, please clarify that.

link|improve this answer
Good approach, but I suspect no; I'm building a third-party library and there could be GAC DLL's I need to inspect, so I would need to include those too. – Brian Mains Mar 20 '11 at 0:11
feedback

Your Answer

 
or
required, but never shown

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