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.
Similar solution here can be applied to this question.
use Tfs_YourTeamCollectionName;
delete from tbl_BuildProcessTemplate where ProcessTemplateID = 'Your ProcessTemplateID';
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!