How to prevent line continuation in Code Cleanup?
I'm trying to locate how to stop this ("_") from happening when I do a Code Cleanup?
Dim _
primaryDB As _
New Configuration(primaryServer, Info.SupportedDatabases.DBFacilities,
Settings.Applications.DC)
It look like ReSharper 8.1 has some line length limit applied when doing a code cleanup ... I can't find where this limit is located (hoping it's not hard coded limit).
Thanks, Rob.
Please sign in to leave a comment.
I was able to find a solution, in the Options | Code Editing | Visual Basic NET | Formatting Style | Line Breaks and Wrapping
One can increase the margin (default is 120) or uncheck "Wrap long lines".
Cheers, Rob.