7

默认的 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,因为它只是空的吗?

4

2 回答 2

12

这只是元数据——这些都不是必需的。

ComVisible并且Guid仅在您与程序集进行 COM 互操作时才需要。其他属性最终作为 DLL 上的元数据(通过VersionWindows 资源管理器中文件属性对话框的选项卡可见)。

您可以删除该文件,您的应用程序将编译得很好,尽管它没有元数据并且不会是 COM 可见的。

于 2012-09-12T14:54:46.067 回答
3

真正必要的不是任何属性。但建议使用它们!

[assembly: AssemblyVersion("1.0.0.0")]

AssemblyVersion 为程序集提供一个版本,并从 CLR 中用于标识程序集 (StrongName)。AssemblyFileVersion 只是 FileDialog 上的一个属性。

[assembly: AssemblyInformationalVersion("1.0.0.0")]

你可以,但有任何你喜欢的其他版本信息。另一个非常好的属性如下:

[assembly: SuppressIldasm]

在 ildasm 中打开程序集以查看 IL 代码是禁止的。

关于程序集属性还有很多要写的。您可以查看 MSDN 以获取更多信息。

于 2012-09-12T15:03:15.613 回答