How to get the updated argument(s) of a build process template refreshed in 'Process' section of a build definition?

后端 未结 2 1011
死守一世寂寞
死守一世寂寞 2021-01-13 19:26

For a build process template, we can add/remove/edit the argument list of it and use it as variables within the build/work-flow steps. I reading the nice guide

2条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-13 19:52

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

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

    2. Create 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!

提交回复
热议问题