如何在我的紧凑框架windows mobile 6中的assemblyinfo.cs文件中添加汇编描述。
我从
获取构建版本Assembly.GetExecutingAssembly().GetName().Version.Revision.ToString()
现在如何获得程序集描述?
答案 0 :(得分:2)
试试这个
var descriptionAttribute = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false).OfType<AssemblyDescriptionAttribute>().FirstOrDefault();
var description = descriptionAttribute .Description;