in src/Microsoft.NET.Sdk.Functions.Generator/AttributeExtensions.cs [156:163]
public static void SetValue(this Attribute attribute, string propertyName, object propertyValue)
{
var property = attribute.GetType().GetProperty(propertyName);
if (property != null)
{
property.SetValue(attribute, propertyValue);
}
}