<PackageReference Include="NETStandard.Library" Version="2.0.2" />
System.AttributeUsageAttribute
namespace System
{
public sealed class AttributeUsageAttribute :
Attribute
{
public bool AllowMultiple { get; set; }
public bool Inherited { get; set; }
public AttributeTargets ValidOn { get; }
public AttributeUsageAttribute(
AttributeTargets validOn);
}
}