vote up 2 vote down star
1

One of the things I love about Visual Studio 2008 is the ability to refactor and reorganize the "using" statements in source code files (this may have been in 2005 as well, I don't remember).

Specifically, I'm talking about how you can have it both reorganize the statements to be alphabetical (though with the core FCL libraries floating to the top) and removing any statements which don't need to be there (either never used or no longer used).

Is there any way to automate this refactoring (the sorting and trimming) across an entire old codebase? Either through all of the files in a solution or across multiple solution files.

flag

3 Answers

vote up 6 vote down check

I believe you can do it solution wide using Power Commands

From PowerCommands Documentation:

Remove and Sort Usings This command removes and sort using statements for all classes given a project. It is useful, for example, in removing or organizing the using statements generated by a wizard. This command can be executed from a solution node or a single project node.

link|flag
Couldn't have answered it better myself. – Pat Feb 5 at 20:37
I LOVE POWER COMMANDS!!!!! – David Basarab Feb 5 at 20:51
Oh wow I just showed this around the office and now I'm like the hero of the day. Thanks! – Schnapple Feb 5 at 20:58
Glad everyone is happy! – Quintin Robinson Feb 5 at 21:11
vote up 3 vote down

ReSharper is a (commercial) Visual Studio plugin that has a "Code Cleanup" utility than can be run at a solution-wide level. The utility detects and removes unreferenced using statements, and performs other useful maintenance. I am unsure if it provides functionality to sort them, however.

link|flag
I'm not sure if it does by default, but if it doesn't the StyleCop plugin for it definitely does. – Lawrence Johnston Feb 5 at 21:11
vote up 1 vote down

Use PowerCommands addon for Visual Studio '08. You can right click the solution in the Solution Explorer and choose "Remove And Sort" usings. Also, there are options in the Tools-->Options dialog box (scroll down to the Power Commands item) for removing on save and reformatting your code ( using vs settings ) on save.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.