If you have limited access to the server then this might work:
// List of all the different types of GAC folders for both 32bit and 64bit
// environments.
List<string> gacFolders = new List<string>() {
"GAC", "GAC_32", "GAC_64", "GAC_MSIL",
"NativeImages_v2.0.50727_32",
"NativeImages_v2.0.50727_64",
"NativeImages_v4.0.30319_32",
"NativeImages_v4.0.30319_64"
};
foreach (string folder in gacFolders)
{
string path = Path.Combine(
Environment.ExpandEnvironmentVariables(@"%systemroot%assembly"),
folder);
if(Directory.Exists(path))
{
Response.Write("<hr/>" + folder + "<hr/>");
string[] assemblyFolders = Directory.GetDirectories(path);
foreach (string assemblyFolder in assemblyFolders)
{
Response.Write(assemblyFolder + "<br/>");
}
}
}
It basically enumerates the raw GAC folders. It works on DiscountASP shared hosting so might work for your hosting environment.
It could be embellished by enumerating deeper into each assembly's folder to yank out the version number and public key token.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…