自定义 TFS 工作项屏幕
这与TFS2010有关 我有以下要求:
多个任务可以与一个用户故事相关联 当使用 VSTS UI 关闭用户故事时,我需要检查所有关联的任务是否也已关闭。
我的问题:
是否可以将验证函数绑定到工作项 UI?
在这种情况下,witadmin 有用吗?
This is related to TFS2010
I have the following requirment:
Multiple tasks can be associated with a user story
when a user story is closed using the VSTS UI, I need to check if all the associated tasks are closed as well.
My Question:
Is it possible to bind a validation function to workitem UI?
will witadmin be of use in this case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
witadmin 用于管理您的工作项模板,而不是用于编辑它们。
简单的工作项模板无法满足您的要求。我认为您必须创建一个查询来选择所有未关闭但具有关闭的用户故事的任务。
另一种方法是创建 TFS 插件。已经描述了类似的任务 这里。
witadmin is used to administer your work item templates, not for editing them.
Your requirement cannot be fulfilled with a simple work item template. I think you have to create a query to select all tasks that are not closed but have a closed user story.
Another way is to create a TFS addon. A similar task has beed described here.