Wednesday, October 21, 2009

Full assembly name

I needed full assembly name of "Microsoft.SqlServer.ConnectionInfo" and was not able to find how to do this pragmatically.
Finally I had to do it in VS2008 Command Prompt:

gacutil /l "Microsoft.SqlServer.ConnectionInfo" > c:\t.txt

which gave me the result I were looking for:

Microsoft (R) .NET Global Assembly Cache Utility. Version 3.5.30729.1
Copyright (c) Microsoft Corporation. All rights reserved.


The Global Assembly Cache contains the following assemblies:
Microsoft.SqlServer.ConnectionInfo, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91, processorArchitecture=MSIL
Microsoft.SqlServer.ConnectionInfo, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91, processorArchitecture=MSIL

Number of items = 2

No comments:

Post a Comment