Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)?

share|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

2 Answers

up vote 17 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.

share|improve this answer
1  
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
5  
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

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.
share|improve this answer
2  
Easier and faster, should be the accepted answer! – Scorpi0 Dec 14 '12 at 9:54
Definitely easier! But, after I move and edit the solution using the text edit, the solution file shows down below like a regular text file. How do I get rid of this? – Abriel Apr 9 at 20:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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