如何在NETCore1.1中设置AssemblyTitleAttribute

时间:2017-06-03 14:34:56

标签: .net .net-core .net-assembly assembly-attributes

在.NETCore1.1中,下一个代码

typeof(Program).GetTypeInfo().Assembly.GetCustomAttributes().ToList()

返回自定义程序集属性的列表,其中一个属性为AssemblyTitleAttribute。默认情况下,此属性值返回项目名称,但如何设置任何其他值?

尝试添加汇编信息文件AssemblyInfo.cs如何描述here,但收到错误

  

错误CS0579:复制' System.Reflection.AssemblyTitleAttribute'   属性

1 个答案:

答案 0 :(得分:4)

现在可以在.csprojAssemblyInfo.cs中定义属性,但只能使用一个地方,否则会生成“重复”错误。

如果您想使用AssemblyInfo.cs,请将以下内容添加到.csproj以避免重复错误:

<PropertyGroup>
  <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

如果您感兴趣它是如何工作的,请查看GenerateAssemblyInfo task

否则请删除AssemblyInfo.cs并将以下内容添加到.csproj文件中:

<PropertyGroup>
  <AssemblyTitle>My library</AssemblyTitle>
</PropertyGroup>