Right now resharper formats our code like this:
private readonly List<Folder> folders = new List<Folder>
{
new Folder()
};
but I want it to look like this:
private readonly List<Folder> folders = new List<Folder>
{
new Folder()
};
I've been messing with the options a lot, but can't seem to get them right. Can you help?