How do I move a project to a different folder in Visual Studio? I am used to this structure in my projects.

-- app
---- Project.Something
---- Project.SomethingElse

I want to rename the whole namespace SomethingElse to SomethingNew, what's the best way to do that (without manually going into .sln file)?

link|improve this question

Are you using TFS as your source control provider? – Bermo Apr 12 '10 at 6:18
Do you want to rename just the folder or the whole project? – Charles Gargent Apr 12 '10 at 6:46
Project, folder and namespace(s). – Egor Pavlikhin Apr 12 '10 at 7:16
feedback

2 Answers

up vote 4 down vote accepted

Remove the project from your solution by right-clicking it in the Solution Explorer window and choosing Remove. Move the entire project folder, including subdirectories wherever you want it to go. Add the project back to your solution.

Namespace names is something completely different, just edit the source code.

link|improve this answer
That's what I did, but I thought there is a way to do all that without removing the whole project, which makes me then re-add all the dependencies. – Egor Pavlikhin Apr 12 '10 at 21:48
1  
Unload all the dependent projects from the solution, before removing the project you want to move. That way, they don't detect the removal and the project references stay intact. After you move the project and re-add it to the solution, you can load the dependent projects again. – base2 Nov 30 '11 at 11:25
feedback

I tried the suggestion to remove and re-add the project, but then fixing up dependencies can be a pain.

I use this approach:

  1. Move the project folder.
    • If the project is in source control, do the move using source control commands.
  2. Edit the solution file in a text editor. There should be only one path that you need to change.
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.