Where to configure method parameter chop/align when parameter has attribute.

I have a method with a parameter which has an attribute.

public async Task<bool> ReturnBoolMethod([FromServices] IServiceProvider provider)

I have set chop of method parameter for more than 6 parameters, but this method is formatted as 

public async Task<bool> ReturnBoolMethod(
[FromServices]
IServiceProvider provider)

 

Which setting(s) will keep the attribute and the parameter on the same line?

0

Please sign in to leave a comment.