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 messed about withthe options loads, but can't seem to get them right. Can you help?