Question

I have 3 versions of the same assembly in the GAC (Global Assembly Cache), but i physically need a specific version, when going into the framework folder i.e.

c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\

the assembly located in the folder is the latest version.

Can i physically retrieve the first version that was added into the GAC?

Was it helpful?

Solution

Should be able to do that with the GAC Api.

OTHER TIPS

Are you looking for a tool like GacView?

GACView is an alternative to the standard .NET assembly viewer on Windows Explorer. In addition to the standard columns, GACView displays additional information for each assembly, like modified date, file size, full path of the assembly file, file version, and so on. GACView also allows you to delete an assembly the cannot be uninstalled in the regular way.

You can also check out this article Demystifying the .NET Global Assembly Cache

gacutil /l <assembly_name>

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top