3

When creating a new build definition, we have the Process section as below snapshot where the items in the list is untouchable - i.e. I don't know how to refresh and/or clear that list and add new ones (by hitting New button next to it).

If you know how to, please share.

ps. A google for this question comes up with this discussion; and it seems the cache folder might relate to this issue.

enter image description here

braX
  • 11,506
  • 5
  • 20
  • 33
Nam G VU
  • 33,193
  • 69
  • 233
  • 372

1 Answers1

3

Similar solution here can be applied to this question.

  1. Use the below script to delete the registed build process template in TFS database:

use Tfs_YourTeamCollectionName;
delete from tbl_BuildProcessTemplate where ProcessTemplateID = 'Your ProcessTemplateID';

  1. Create/Edit new build definition again.

The database name is your TFS team collection name e.g. Tfs_YourTeamCollection in the backend SQL Server of your TFS server. I'm using TFS 2012.

Hope it helps!

Community
  • 1
  • 1
Hoang Nguyen
  • 1,348
  • 1
  • 10
  • 17