How to define AssemblyProduct in csproj with the new csproj build system

2.3k Views Asked by At

In the "old" world I would define an AssemblyProductAttribute and AssemblyTrademarkAttribute that would the show up as "Product name" and "Legal trademarks" in the file propeties in windows explorer.

In the new simplified msbuild system which is used in Visual Studio 2017 for netstandard projects, the preferred way is to define all those assembly level attributes in the csproj directly and let msbuild generate the actual attributes.

But it seems there is no way to define "Product name" and "Legal trademarks" in csproj. Or is there? This msbuild target seems to hint that it should at leat work for the AssemblyProductAttribute.

How can I add those two things?

Udapte: Ok, so for the AssemblyProductAttribute in can write <Product>Foo</Product> right into the csproj file. But what about the AssemblyTrademarkAttribute?

1

There are 1 best solutions below

0
On BEST ANSWER

You can add an item for assembly attributes not already emitted by these targets:

<ItemGroup>
  <AssemblyAttribute Include="System.Reflection.AssemblyTrademarkAttribute">
    <_Parameter1>My Trademark</_Parameter1>
  </AssemblyAttribute>
</ItemGroup>

An example can be seen here for how it can be used to generate InternalsVisibleTo attributes.