You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently UsingCodeFixProvider can merge two using directives which do not use the same alias. The correct behavior is to allow merging a using directive which does not have an alias with any using directives which have the alias global::. Using directives with any other alias can only be merged with other using directives that have exactly the same alias.
The text was updated successfully, but these errors were encountered:
This change can result in the output of this code fix containing duplicate
using directives, but this situation does not break the semantics of code
and only produces a build warning.
FixesDotNetAnalyzers#1770
Currently UsingCodeFixProvider can merge two using directives which do not use the same alias. The correct behavior is to allow merging a using directive which does not have an alias with any using directives which have the alias
global::
. Using directives with any other alias can only be merged with other using directives that have exactly the same alias.The text was updated successfully, but these errors were encountered: