How to refresh build process template in Process section when creating new build definition via TFS 2012

1.1k views Asked by At

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

1

There are 1 answers

0
Hoang Nguyen On

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!