Quick / easy renaming of file names in TFS (CodePlex)

I host a project on CodePlex, but files with a bundle (200+) must have an extension.

What is the easiest, least painful way to do this? I cannot see how I do them one by one in the IDE.

Update:

I know that I can simply delete and change them using the command line / utility and read them, but that would lose the story.

Perhaps there is some command line interface for TFS in CodePlex?

+3
source share
1 answer

You can use tf.exe , which is installed using Team Explorer. Cm.

tf.exe rename /?

. : /login . tf.exe Windows. :

tf rename /login:user,password old.cs new.cs
+8

All Articles