vote up 3 vote down star

How can I tell from the assemblyName, or Assembly class (or others like it), whether an assembly is part of the .net framework (ie System.windows.Forms)?

So far I've considered the PublicKeyToken, and CodeBase properties, but these are not always the same for the whole framework.


Edit: The reason I want this info is to get a list of assemblies that my exe is using that need to be on client machines, so I can package the correct files in a setup file without using the Visual Studio setup system. The problem is, I don't want to pick up any Framework assemblies, and I want it to be an automatic process that is easy to roll out whenever a major update is finished.

The ultimate solution would be that there is an IsFramework property....:)

flag

4 Answers

vote up 3 vote down check

It would be helpful if you can explain why you want to get this information. But I suspect that the method both most reliable and most general is going to be the PublicKeyToken. Yes, there's more than one, but it's going to be a finite list and one that doesn't change very often.

Edit: for that matter, you could just have a whitelist of assembly names -- that list, too, will be both finite and static between versions of the framework.

link|flag
I wonder if you can query some Microsoft service for the public key tokens... like the way they provide a remote symbol server. That way you don't have to track it manually. – ajmastrean Sep 9 '08 at 15:33
vote up 1 vote down

It begins with "System" ;)

link|flag
mscorlib doesn't as far as I know... – Dave Arkell Sep 9 '08 at 15:23
'mscorlib' contains mostly 'System.' namespaces though. But 'System' is not a reserved namespace element. – ajmastrean Sep 9 '08 at 15:32
Neither do the Microsoft.* assemblies. – OwenP Sep 9 '08 at 15:32
Microsoft.* are not part of the Framework either. While System isn't reserved, all of the .NET framework assemblies do begin with System – Ben Scheirman Sep 9 '08 at 21:34
vote up 1 vote down

You could use reflection to look at the publisher of the assembly, and coordinate that with the assembly's path. If you find an assembly whose publisher is Microsoft, and which exists somewhere below c:\Windows\Microsoft.NET\Framework it's a safe bet it's part of the runtime.

Edit: On second though, the publisher may not even be necessary. Anything under that path should be part of the runtime (barring a misbehaving app that's diddling where it shouldn't be).

link|flag
The issue here is that a lot of stuff is in the GAC according to AssemblyName and Assembly – Dave Arkell Sep 9 '08 at 15:44
vote up 0 vote down

No it doesn't begin with "System", you could check "WindowsBase" which is a framework assembly.

You can't also check the PublicKeyToken because there are other Microsoft assemblies signed with the "default" keys but they are not part of the .NET Framework (VS assemblies).

The best way of doing it is to get a collection of installed .NET frameworks and check if the target assembly is part of their RedistList (RedistList\FrameworkList.xml)

link|flag

Your Answer

Get an OpenID
or

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