What is the fastest way to determine latest version & service release of dll installed to workstation.
Means any other way but to go to the ProgramFiles, Infragistics, bin and check the property of actual dll.
Thanks
Hello Michael,
Here is another way with Windows Explorer and the GAC
Press Windows button + R or Start Menu -> Run
Type “C:\windows\assembly” and press Enter
Sort by version
Thanks, that's cool, just want to understand a bit better, in my assembly directory I have only Infragistics2 & infragistics35, although in my Program files I have Infragistics4 (CLR40) and that is what I have in my project references. Just for bookeeping :
Why I need Infragistics2 & Infragistics35, are they stack-able as .net releases...
Why Infragistics4 not in assembly directory. They are ones that project refers to.
I did not start to build deployment process so trying to understand something upfront...
Normal 0 false false false EN-US JA X-NONE
After NetAdvantage is installed all assemblies should be installed into the GAC too. However you don’t see assemblies for .net 4.0 because all infragistics assemblies are in different GAC folder.
Stackoverflow and MSDN explains why they are in diffent folder:
http://stackoverflow.com/questions/2660355/net-4-0-has-a-new-gac-whyhttp://msdn.microsoft.com/en-us/magazine/dd727509.aspx
for example:
Thanks, That was helpful.