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? |
|||||||||
|
|
To clarify Mortens solution:
|
|||||||||||||||||||||
|
|
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 :) |
|||
|
|
There is another way doing this, using the *.sol, *csproj files.
Have fun. |
|||
|
It worked for me. |
||||
|
|
|
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 |
||||
|
|
|
@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). |
|||
|
|
|
There is no simple, one-click way of doing it. Not from within Visual Studio, anyways. |
|||
|
|
|
NOTE: This fix is for Visual Studio 2008, but should work here.
DONE. |
||||
|
|
|
I have written a small tool that automates all these steps. Also supports subversion for now. Information about current releases can be found here Visual Studio Project Renamer Infos Latests releases can now be downloaded from the Visual Studio Project Renamer Download Page Feedback is much appreciated. |
||||
|
|
|
When using TFS step 2 is actually to rename the folder in source control and then get the latest before reopening the solution. |
|||
|
|
|
I just had to do this myself (using VS2010). As some folks have answered, the simplest step seems to be:
|
|||
|
|
|
I have requested the feature from the VS team: http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/3282247-rename-project-folders-and-files I might dabble still with a VS extension. |
|||
|
|
|
After changing the folder name, open the .sln file in notepad and change the path to new path. |
|||
|
|