Possible Duplicate:
What's the best way to do a bulk namespace rename on a large c# application?
I am changing the Default Namespace for my projects in the solution.
I can use Resharper for example to adjust the namespaces for me in ONE project.
but I am looking for some tool that can adjust the namespaces in the whole SOLUTION.
I am using VS2008 pro. is there a refacotring tool that can adjust the namespaces in the all projects of my solution? ( it is about 60 projects in the solution! pain!)
Refactor a namespace DOES work in Resharper… right-click on the namespace you want to rename, pick
refactor->refactor this, then pickrename namespacein the mini-popup in the editor. I.Enamespace myproj.data {– right-click on ‘data’Pick a new name, click ‘next’, and Resharper will rename the namespace throughout the application.
You can also right-click and just pick
refactor->rename… I’ve tested both, they both work.