Code Clean Up Options for #pragma to keep tab location
Hi,
When I use ReSharper code cleanup in my projects (VS 2008, RS 4.5.2), it removes the "#pragma" directive's leading tabs. So:
#pragma warning disable 168
foreach (var row in table.GetRows(selection, cursors.ToArray()))
#pragma warning restore 168
becomes this:
#pragma warning disable 168
foreach (var row in table.GetRows(selection, cursors.ToArray()))
#pragma warning restore 168
I looked through all the formating options and didn't see anything? Thanks!
--Jonathan
Please sign in to leave a comment.