在.NETCore1.1中,下一个代码
typeof(Program).GetTypeInfo().Assembly.GetCustomAttributes().ToList()
返回自定义程序集属性的列表,其中一个属性为AssemblyTitleAttribute
。默认情况下,此属性值返回项目名称,但如何设置任何其他值?
尝试添加汇编信息文件AssemblyInfo.cs
如何描述here,但收到错误
错误CS0579:复制' System.Reflection.AssemblyTitleAttribute' 属性
答案 0 :(得分:4)
现在可以在.csproj
或AssemblyInfo.cs
中定义属性,但只能使用一个地方,否则会生成“重复”错误。
如果您想使用AssemblyInfo.cs
,请将以下内容添加到.csproj
以避免重复错误:
<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
如果您感兴趣它是如何工作的,请查看GenerateAssemblyInfo task。
否则请删除AssemblyInfo.cs
并将以下内容添加到.csproj
文件中:
<PropertyGroup>
<AssemblyTitle>My library</AssemblyTitle>
</PropertyGroup>