up vote 4 down vote favorite
share [g+] share [fb]

I'm doing some architectural cleanup that involves moving a bunch of classes into different projects and/or namespaces. Currently I'm moving the files by hand, building, and then manually adding using Foo statements as needed to resolve compilation errors. Anyone know of a smarter way of doing this? (We're a CodeRush and Refactor! shop, but I'd be interested to hear if Resharper has support for this)

link|improve this question

CTRL-X, CTRL-V ;-] – Sky Sanders Feb 14 '10 at 2:37
feedback

2 Answers

up vote 2 down vote accepted

Resharper is the only tool I am aware of what has this ability. There is also a lot of other functionality that it has that is missing in CodeRush and Refactor!

link|improve this answer
For the most part I really like the DevExpress tools, but the ability to move files seems like such a simple feature that I'm surprised its missing. I've been meaning to test drive Resharper for awhile, maybe its time... – Seth Petry-Johnson Oct 6 '08 at 18:57
ReSharper is way cleaner - doesn't add tons of colourful garbage to my source code. – Dmitri Nesteruk Dec 3 '08 at 9:38
1  
@dmitri - yeah, it does get noisy, especially when you run both, like me ;p You can turn of painting in options if that is what bothers you. – Sky Sanders Feb 14 '10 at 2:36
feedback

Since the answer above was provided (I'm guessing) this feature has been added to Refactor. Just place the carat on the Type to be moved and you'll see a Move Type to Namespace option on the Refactor! context menu. This will move the type to the new namespace and update references. You may still want to move the file to a solution folder that matches the name of the namespace though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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