Change templates used in refactoring?

For example, I want to change the way "Convert to Property with backing field" works. Currently, it spreads the property on 5 lines, eg:

public double? Lgd
{
get => lgd;
set => lgd = value;
}

I want it to be a one liner, like builtin visual studio refactor does it:

public double? Lgd { get => lgd; set => lgd = value; }

 

And I can't seem to find a way to change this, nor a way to invoke builtin refactor instead of resharper's. Where can I edit this template, or instruct resharper to use the compact version?

 

0
1 comment

Hello,

 

Please try enabling ReSharper | Options | Code Editing | C# | Line Breaks and Wrapping | Arrangement of Declaration Blocks | Place simple property/indexer/event declaration on single line.

Thank you.

0

Please sign in to leave a comment.