The Place System references first option does not work correctly
Visual BasicImports System.Data
Imports ConsoleAppTest.MyTestNamespace
Imports System.Windows.Forms
Public Class Class1
Public Sub RunTest()
Dim cls As New Class2
cls.Test()
End Sub
End Class
Namespace MyTestNamespace
Public Class Class2
Public Sub Test()
Dim table As New DataTable
Dim ctl As New Button
End Sub
End Class
End Namespace
Code Cleanup for the above folder sorts the namespace references as follows. They are sorted alphabetically but the system references are not first.
Visual BasicImports ConsoleAppTest.MyTestNamespace
Imports System.Data
Imports System.Windows.Forms
Hi John,
I have reproduced the issue, and we are working on it. I will notify you once we get any results.