I am using the Power Commands extension with Visual Studio 2012. I have the option to delete and sort messages when saving. The problem is that the System.Xxx directives are sorted last and cause a style parsing error:
SA1208: System directives must be placed before all other directives.
Before saving:
using System; using System.Diagnostics.CodeAnalysis; using Foo;
After saving:
using Foo; using System; using System.Diagnostics.CodeAnalysis;
This worked correctly (System.Xxx first) with VS 2010. Does anyone know how to fix this?
Note. Even if this did not cause the SA error, I would prefer the system directives to be first.
c # visual-studio-2012 powercommands
Bob Horn Oct 03 '12 at 19:20 2012-10-03 19:20
source share