Given a list of namespace references in a C# file like this:
using System;
using System.Collections.Generic;
using System.Linq;
using A = System.Diagnostics;
using B = System;
When sorted, I would expect to see them in the order listed. However, CodeRush for Roslyn sorts by the namespace being aliased rather than the alias, yielding:
using System;
using System.Collections.Generic;
using System.Linq;
using B = System;
using A = System.Diagnostics;
(Note the last two aliased namespaces are sorted incorrectly.)
Hi Travis,
Thank you for pointing out this issue.
We will research it and let you know when we have any results.