Delete a project from the team creation server at visualstudio.com

I tried to delete the project from Team Foundation Service , and I get this error:

TF200016: The following project does not exist: PetraERP_1. verify that the project name is correct and that the project exists on the specified Team Foundation server.

The command I use is:

TFSDeleteProject /force /collection:https://mydomain.visualstudio.com/DefaultCollection PetraERP_1 

The path to the $/Petra Solutions/PetraERP_1 .

+4
source share
1 answer

Petra Solutions is the name of the team project.

Removing this will delete all your code, work items, assemblies, everything! And he is not recovering.

If so, there is an opportunity in web access to do it now.

Or via the command line:

 TFSDeleteProject /force /collection:https://mydomain.visualstudio.com/DefaultCollection "Petra Solutions" 

If this is not the case, and you just want to delete the PetraERP_1 code folder, you need the tf delete command to delete the source code (this can be restored).

To use tf delete , you need to get a working copy of the code. You can perform a non-recursive check with the tf get command in the workspace, matching this path.

+4
source

Source: https://habr.com/ru/post/1488592/


All Articles