有没有简单的方法来获得组合的完全限定名称? e.g。
<section name="unity" type=" Microsoft.Practices.Unity.Configuration.UnityConfigurationSection, Microsoft.Practices.Unity.Configuration, Version=2.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
答案 0 :(得分:9)
这是来自I Note It Down的无耻复制粘贴,是获取项目输出的FQAN的简单方法:
Open Visual Studio
Go to Tools –> External Tools –> Add
Title: Get Qualified Assembly Name
Command: Powershell.exe
Arguments: -command "[System.Reflection.AssemblyName]::GetAssemblyName(\"$(TargetPath)\").FullName"
Check "Use Output Window".
新工具显示在Tools –> Get Qualified Assembly Name
下方。选择菜单项后,将在输出窗口中显示程序集名称。
答案 1 :(得分:6)
This文章(如何:确定大会的完全合格的名称 )可能会帮助你
来自MSDN的代码
//s if the Fully Qualified assembly name
Type t = typeof(System.Data.DataSet);
string s = t.Assembly.FullName.ToString();