I'm struggling with Resharpers formatting. Consider the following Code:
product.Resources.Where(x => x.Tracked).Pipe(y =>
{
//Action
});
How can I tell ReSharper to indent the part in the curly braces and the curly braces itself only a little bit? I've tried several Resharper formatting settings but none had any effect in this case.
Edit:
I would like to have a format similar to this:
product.Resources.Where(x => x.Tracked).Pipe(y =>
{
//Action
});