System.Reflection.AssemblyMetadataAttribute
namespace System.Reflection
{
internal sealed class AssemblyMetadataAttribute : Attribute
{
public string Key { get; }
public string Value { get; }
public AssemblyMetadataAttribute(string key, string value);
}
}