My current solution for renaming the project folder is:
- Remove the project from the solution.
- Rename the folder outside Visual Studio.
- Re-add the project to the solution.
Is there a better way?
|
My current solution for renaming the project folder is:
Is there a better way?
| |||||
feedback
|
|
To clarify Mortens solution:
| |||||||||||||||||
feedback
|
|
Currently, no. Well, actually you can click the broken project node and in the properties pane look for the property 'Path' then click the small browse icon and select the new path. Voila :) | |||
feedback
|
|
There is another way doing this, using the *.sol, *csproj files.
Have fun. | |||
|
feedback
|
|
In andersjanmyr's answer its easier to rename the project first.
Also, after those steps are carried out you might want to rename other references to your old project name. In project properties, update the Assembly Name and Default Namespace. This will update the following in the project file...
...and will get rid of the error "Namespace does not correspond to file location, should be: 'SomeProjectName'" Rename your root namespace (if you have resharper right click the Namespace and go Refactor -> Rename). Change all occurences of your old project name in AssemblyInfo.cs | |||
|
feedback
|
|
a. Close the solution and the IDE b. In Explorer: Change the directory name to the new name. c. In Explorer: Open the .sln file with a text editor. c. Change the directory name to the new name and save. d. Restart the IDE and open the solution from the File, Recent Files menu if it doesn't start automatically. e. Click on the Project folder of the Solution Explorer and check the path property in the properties at the bottom. It will now be referencing to the new project folder.
| |||
|
feedback
|
|
@andersjanmyr's Solution: you may press Alt+Enter to bring up the Properties Page for the unavailable project and set the "File Path" property there; since it is not available in the right-click_context-menu of the unavailable project (in VS2008). | |||
|
feedback
|
|
There is no simple, one-click way of doing it. Not from within Visual Studio, anyways. | |||
|
feedback
|
|
NOTE: This fix is for Visual Studio 2008, but should work here.
DONE. | ||||
|
feedback
|
|
I just had to do this myself (using VS2010). As some folks have answered, the simplest step seems to be:
| |||
|
feedback
|
|
I have written a small tool that automates all these steps. Also supports subversion for now. Download it here: Visual Studio Project Renamer If you are using the tool, please leave some feedback. I may be able to improve it alot. Regards, | ||||
|
feedback
|