up vote 6 down vote favorite
share [g+] share [fb]

I have a vs.net project, and after some refactoring, have modified the name of the project. How can I easily rename the underlying windows folder name to match this new project name under a TFS controlled project and solution?
Note, I used to be able to do by fiddling with things in the background using SourceSafe ...

link|improve this question

70% accept rate
feedback

4 Answers

up vote 4 down vote accepted

Just right click on the folder in TFS, and select Rename. Once you commit the rename, TFS will make the changes on disk for you. As Kevin pointed out, you will want to make sure that everything is checked in, because TFS will remove the old folder and everything in it, and pull down the renamed folder with the current version of the files in it.

One final note: You can't rename a folder that you haven't mapped, or that you haven't done a "Get" from. I don't know why, but TFS will disable the Rename option in these cases.

At least that's what happened to me, if I remember correctly.

link|improve this answer
feedback

You could just rename the project (.Xproj file and project folder) in TFS, delete the local folder structure and all of its contents, then do a get latest for the project. All of this depends the notion of your source repository is completely up to date and compilable.

link|improve this answer
feedback

Here are steps that worked for me in Visual Studio 2008 with TFS:

  1. Close solution.
  2. Rename project folders in Source Control Explorer (right-click -> rename). This duplicates code into newly named folders.
  3. Open the solution, and in Solution Explorer, remove the old folders/projects and add the new, properly named, duplicates, (on old projects, right-click -> remove, then on the solution, right-click->Add->Existing Project...)

OR: After step 2, you can open the solution's .sln file in a text editor, and manually update the project folder names. If you do this, you might need to manually check-out the .sln file to be sure your changes will be checked in (<- important!).

link|improve this answer
feedback

My particular configuration is VS2010 connecting to TFS2008. I tried some of the other solutions here, but had problems. I found the following worked for me:-

  1. Remove project in folder to be renamed from solution
  2. Save solution
  3. Rename folder containing removed project in TFS source control (this renames locally on your hard disk)
  4. Add project back to the solution from the new location
  5. Save solution
  6. Commit to source control

Now, you'll have the folder rename and the solution re-map all committed under one changeset.

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.