System.Reflection.AssemblyProductAttribute
namespace System.Reflection
{
public sealed class AssemblyProductAttribute : Attribute
{
public string Product { get; }
public AssemblyProductAttribute(string product);
}
}