File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -157,6 +157,25 @@ StyleCop Analyzers only considers using directives to be "System" using directiv
157157while StyleCop Classic ignored the alias. For example, ` using global::System; ` would be not be considered a System using
158158directive by StyleCop Analyzers, but it would be considered a System using directive by StyleCop Classic.
159159
160+ ### SA1210
161+
162+ StyleCop Analyzers considers alias-qualifiers when sorting using directives, in order to match the default behavior of
163+ Visual Studio 2015. StyleCop Classic ignores alias-qualifiers when sorting using directives.
164+
165+ Example showing sorting order for StyleCop Analyzers:
166+ ``` csharp
167+ using Beer ;
168+ using global ::Wine ;
169+ using Tea ;
170+ ```
171+
172+ Example showing sorting order for StyleCop Classic:
173+ ``` csharp
174+ using Beer ;
175+ using Tea ;
176+ using global ::Wine ;
177+ ```
178+
160179### SA1214
161180
162181StyleCop Classic only reports SA1214 for violations involving static fields. In StyleCop Analyzers, SA1214 and SA1215
You can’t perform that action at this time.
0 commit comments