vote up 0 vote down star

Hi:

I'm trying to create a diagnostic log for my application that will display the latest version number of an assembly installed in the GAC. For example, there are two versions of the same assembly in the GAC: foo.dll version 1.0.0.0 and foo.dll version 2.0.0.0. I need a function like the following:

GetLatestGacVersion("foo.dll");  // returns "2.0.0.0"

Anyone know the best way to do this?

Thanks!

flag

80% accept rate
What are you going to do with the data in your "diagnostic log"? This type of stuff really isn't something you should be dealing with at runtime; and if you find you really do, you might try the fusion log viewer (fuslogvw) – Dan Oct 13 at 2:51
There are assemblies in the GAC that my application uses. I'm trying to have the application print the latest version number of that assembly to a log/dialog screen for tech support purposes. Seems like the deprecated LoadWithPartialName method meets these minimal requirements. – Ken Oct 13 at 14:26

2 Answers

vote up 0 vote down check

Easiest is:

Assembly a = Assembly.LoadWithPartialName ("foo.dll");
return a.GetName ().Version

which will automatically give you the latest-version assembly from the GAC.

Please note that the Method is deprecated for good reasons. Asking for an unspecific version from the GAC is going to possibly cause lots of trouble.

Without really knowing what you want to do it's hard to give further advice, but in general if you are looking for a specific version you should rather probe for it instead of just loading "something".

link|flag
To clarify: I'm not trying to do anything more than what the question asks, and that is: Find the latest version number of a GAC assembly so that it can be logged. I'm being cautious, as this a deprecated method. However, I think my application of it is safe because I won't be using the Assembly object returned by the LoadWithPartialName() method for anything else. From MSDN: "This method first calls Load. If the assembly is not found, this method returns the assembly from the global assembly cache that has the same simple name, and the highest version number." Thanks a lot! – Ken Oct 13 at 0:05
vote up 2 vote down

Using a managed wrapper around the Fusion API (fusion.dll) you could enumerate the assemblies in the GAC, filter them by name and order by version.

link|flag
Admittedly, this is probably the more correct way to accomplish my task. However, the deprecated LoadWithPartialName method seems to meet my minimal requirements for most cases with just one line of code and no COM interop. Thank you very much for the advice! – Ken Oct 13 at 14:31

Your Answer

Get an OpenID
or

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