.net 如何在NETCore1.1中设置AssemblyTitleAttribute

.net 如何在NETCore1.1中设置AssemblyTitleAttribute,.net,.net-core,.net-assembly,assembly-attributes,.net,.net Core,.net Assembly,Assembly Attributes,在.NETCore1.1中,下一个代码 typeof(Program).GetTypeInfo().Assembly.GetCustomAttributes().ToList() 返回自定义程序集属性的列表,其中一个是AssemblyTitleAttribute。默认情况下,此属性值返回项目名称,但如何设置任何其他值 试图添加程序集信息文件AssemblyInfo.cs其描述方式,但出现错误 错误CS0579:重复“System.Reflection.AssemblyTitleAttribut

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

typeof(Program).GetTypeInfo().Assembly.GetCustomAttributes().ToList()
返回自定义程序集属性的列表,其中一个是
AssemblyTitleAttribute
。默认情况下,此属性值返回项目名称,但如何设置任何其他值

试图添加程序集信息文件
AssemblyInfo.cs
其描述方式,但出现错误

错误CS0579:重复“System.Reflection.AssemblyTitleAttribute” 属性


现在可以在
.csproj
中或使用
AssemblyInfo.cs
定义属性,但只能使用一个位置,否则会生成“重复”错误

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

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

现在可以在
.csproj
中或使用
AssemblyInfo.cs
定义属性,但只能使用一个位置,否则会生成“重复”错误

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

<PropertyGroup>
  <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
伟大的多谢!虚假是我所需要的伟大!多谢!虚假是我所需要的