4

I got the following code:

[Column]
public int Id;

When I remove and readd a bracket, VS 2013 changes this to :

[Column] public int Id;

I don't want this. It is a fresh installation with ReSharper Added. I am unsure where to change the setting.

Ole Albers
  • 8,715
  • 10
  • 73
  • 166

1 Answers1

11

Go to RESHARPER -> Options -> Code-Editing -> C# -> Formatting Style -> Line Breaks and Wrapping -> Other

and deselect

Place singleline accessor attribute on same line
Place multiline accessor attribute on same line

Jeroen Vannevel
  • 43,651
  • 22
  • 107
  • 170