What is the easiest and fastest way to rename a projgect in visual studio 2005, including changing the folder name of the project?
Asked
Active
Viewed 1.1k times
3 Answers
1
The best way to do that:
- Rename project within VS
- Remove project from the solution
- Manually rename folder
- And finally add project back to the solution
Is the only way I know.

Evgeny Gavrin
- 7,627
- 1
- 22
- 27
0
Open the solution->remove the project
Opne Windows Explorer, Rename The Folder and the project
Reload the solution and add the project back in again. Alternatively, you can open the solution file with notepad and change the project path manually

smnbss
- 1,031
- 1
- 10
- 21
0
My preferred method:
1) In windows explorer/command line, rename the project file and directory
2) Open the .SLN and search-and-replace the old project name with the new project name
That'll do ya

Brian Colavito
- 11
- 1