This question is locked. New answers and comments are not allowed.
When I Fix Usings JC moves all of my aliases to the bottom of the Usings block...
and then, when I clean my code, JC sorts the aliases in to the Usings block alphabetically...
I know I've mentioned this before and I know that you said that the 2 functions do things differently. The point is I can't even begin to imagine what a good reason for that behaviour might be.
The current behaviour means that we get changes in out source code change history that are not really part of the actual changes if programmer A cleans the code last and programmer B fixes the usings last.
Please, sort it out.
FWIW, I think Fix Usings does it (putting the aliases at the bottom) is the way to go.
--
Stuart
using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Web.UI.WebControls; using Telerik.Web.UI; using CommSec = UEAPL.Common.PresentationLayer.WorkgroupSecurityServiceProxy; using Utils = UEAPL.Shared.Utilities;and then, when I clean my code, JC sorts the aliases in to the Usings block alphabetically...
using CommSec = UEAPL.Common.PresentationLayer.WorkgroupSecurityServiceProxy; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Web.UI.WebControls; using Telerik.Web.UI; using Utils = UEAPL.Shared.Utilities;I know I've mentioned this before and I know that you said that the 2 functions do things differently. The point is I can't even begin to imagine what a good reason for that behaviour might be.
The current behaviour means that we get changes in out source code change history that are not really part of the actual changes if programmer A cleans the code last and programmer B fixes the usings last.
Please, sort it out.
FWIW, I think Fix Usings does it (putting the aliases at the bottom) is the way to go.
--
Stuart