vote up 3 vote down star
2

Visual Studio 2008 got two great features for c#, which is called "sort using directives" and "remove unused using directives".

I'd like to call the "sort using directives" every time I format the code using ctrl+k,ctrl+d.

Or, even better, I would like to be able to reformat all c#-source files in a project, and call "sort using directives" for all source files.

How can I do this? Opening every cs-file by hand and typing these functions before every checkin is tedious!

flag

65% accept rate

3 Answers

vote up 6 vote down check

You can do it all for a solution or project using "PowerCommands for Visual Studio 2008". After installation, you just need to right-click on a project or solution and "Remove and Sort Usings" is in the context menu.

link|flag
Yeah, cool. It even can reformat and sort using on file save. Just what I was looking for, thanks! – Sam Jan 16 at 14:18
After using the PowerCommands for some days, I find them lacking in one detail: There is no way to just sort usings on save. Sort & remove unused has its problems: Errors on auto-save due to build ("build in progress, can't remove unused"), errors when code does not compile. Sort only would be nice – Sam Jan 22 at 10:24
vote up 1 vote down

I recommend you record a macro of you invoking the feature manually. Then you can just save the macro and put a button for it on the toolbar. This way you'll also have a foot in the door to get started really customizing your IDE.

link|flag
vote up 0 vote down

ReSharper can do this for you (among other reformatting options) and it allows you to do an entire solution in one go.

link|flag
It would be nice if you could also say how to do this :). For the less initiated . – sirrocco Jan 16 at 14:07

Your Answer

Get an OpenID
or

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