In Resharper 9.2 and Visual Studio 14 (2015), I would like to remove the empty line before the opening bracket in the cleanup code (Ctrl + E, Ctrl + C). I can not find the settings for this. Here is a sample code.
What I have:
namespace TestApp.Test { public class Program { private string _foo; private string _bar; public string Qux { get; set; } private Program() { } } }
What I want:
namespace TestApp.Test { public class Program { private string _foo; private string _bar; public string Qux { get; set; } private Program() { } } }
The options "Delete empty lines after" {"and before"} "in the ad" and "Delete empty lines after" {"and before"} "in the code" do not work for this problem.
When I set the "Keep max blank lines in declarations" option to "0", the empty line is deleted, as well as all empty lines between fields and properties. Therefore, I would like to keep it at "1".
What I do not want:
namespace TestApp.Test { public class Program { private string _foo; private string _bar; public string Qux { get; set; } private Program() { } } }
c # visual-studio-2015 resharper
hvk
source share