59

I'm working in a C# project and using Visual Studio 2012. When Visual Studio tries to format my code, it breaks lines and make my code look difficult to read. The original code (what looks pretty nice to read for me and my team):

if (list.Any(x => x.Type == (int) EnumType.Customer))
{

}

And when Visual Studio tries to format:

if (
    list.Any(
        x => x.Type ==
                (int) EnumType.Customer))
{
  // Other break codes
}

There are a lot of other parts where it is breaking my code. I like auto formatting for some parts, but my question is: Is there a way to disable this break lines from auto formatting in Visual Studio?*

PS: I also have ReSharper installed.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Felipe Oriani
  • 37,948
  • 19
  • 131
  • 194
  • 3
    This doesn't look like any sort of default code formatting that Visual Studio does. Do you have an extension installed that may be changing how code gets auto-formatted? – Adam Maras Dec 26 '12 at 17:13
  • Well, I have resharper installed. Maybe it is doing by resharpers. I will edit my post. – Felipe Oriani Dec 26 '12 at 17:13

2 Answers2

103

Solution for long lines:

ReSharper, menu OptionsCode EditingC#Formatting StyleLine Breaks And Wrapping.

And disable Wrap long lines:

Enter image description here

And it really makes me crazy!

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Felipe Oriani
  • 37,948
  • 19
  • 131
  • 194
2

In ReSharper's settings, in the Languages section, you can change the formatting style of your C# code. The option you're looking to disable is something along the lines of "Indent anonymous method body." You can also look through the options to further customize the formatting style to your preference.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Adam Maras
  • 26,269
  • 6
  • 65
  • 91