The 'xps' template always expands as follows:
C#string propertyName;
[Size(SizeAttribute.DefaultStringMappingFieldSize)]
public string PropertyName
{
get => propertyName;
set => SetPropertyValue(nameof(PropertyName), ref propertyName, value);
}
It should take into account the "Use expression body for accessors" setting and expand according to its value.