默认的AssemblyInfo.cs如下所示:
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Foobar")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Foobar")]
[assembly: AssemblyCopyright("Copyright © 2012")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("e8cd5d7d-5fba-4fe1-a753-f0cc6e052bf2")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
这真的有必要吗?例如,我可以删除Guid和ComVisible,如果我不需要它,或者AssemblyTrademark,因为它只是空的吗?
答案 0 :(得分:10)
这只是元数据 - 这些都不是必需的。
只有在与程序集进行COM互操作时才需要 ComVisible
和Guid
。其他属性最终作为DLL上的元数据(通过Windows资源管理器中文件属性对话框的Version
选项卡可见)。
您可以删除该文件,您的应用程序将编译得很好,但它没有元数据,也不会显示COM。
答案 1 :(得分:3)
真正必要的不是任何属性。但建议使用它们!
[assembly: AssemblyVersion("1.0.0.0")]
AssemblyVersion为程序集提供了一个版本,并从CLR中用于标识程序集(StrongName)。 AssemblyFileVersion只是FileDialog上的一个属性。
[assembly: AssemblyInformationalVersion("1.0.0.0")]
你可以,但你有任何其他版本信息。 另一个非常好的属性如下:
[assembly: SuppressIldasm]
禁止在ildasm中打开程序集以查看IL-Code。
还有很多关于装配属性的文章。您可以查看MSDN以获取更多信息..