I'm getting
C#namespace Pfi.WorkflowSystem.Domain.Enums
{
using System.ComponentModel;
public enum WorkflowRole
{
[Description("Manufacturing")]
Manufacturing = 0,
[Description("Manufacturing Manager")]
ManufacturingManager = 1,
}
}
when I would expect
C#namespace Pfi.WorkflowSystem.Domain.Enums
{
using System.ComponentModel;
public enum WorkflowRole
{
[Description("Manufacturing")]
Manufacturing = 0,
[Description("Manufacturing Manager")]
ManufacturingManager = 1,
}
}
I haven't found any settings that affect attribute indention.
Please let me know if this is something I can change.
Thanks,
Justin
Hello,
Thank you for pointing out this issue to us. We will let you know once we make a fix.