TFS板配置问题

时间:2014-04-08 19:52:02

标签: tfs tfs2012 kanban

我正在尝试为新的团队项目配置TFS板,我能够创建工作项,状态,字段等。但是,我在尝试配置TFS功能时得到了这个。

以下是我的问题:

  1. 我在哪里可以找到" TypeFields / TypeField [type =' ApplicationType'"?
  2. 我应该继续销毁工作项并运行功能启用以摆脱TF400612吗?
  3. 错误/警告日志:

    [Warning] TF400612: The existing work item type 'Code Review Request' is reused. If the feature 'Code Review' is not behaving correctly, you can destroy the existing work item type and rerun feature enablement.

    [Warning] TF400612: The existing work item type 'Code Review Response' is reused. If the feature 'Code Review' is not behaving correctly, you can destroy the existing work item type and rerun feature enablement.

    [Warning] TF400612: The existing work item type 'Feedback Request' is reused. If the feature 'Feedback' is not behaving correctly, you can destroy the existing work item type and rerun feature enablement.

    [Warning] TF400612: The existing work item type 'Feedback Response' is reused. If the feature 'Feedback' is not behaving correctly, you can destroy the existing work item type and rerun feature enablement.

    [Error] TF400654: Unable to configure Planning Tools. The following element contains an error: TypeFields/TypeField[type='ApplicationStartInformation']. TF400330: The application start information field for feedback request is not configured correctly. Contact your Team Foundation Server administrator to correct the configuration.

    [Error] TF400654: Unable to configure Planning Tools. The following element contains an error: TypeFields/TypeField[type='ApplicationLaunchInstructions']. TF400329: The application launch instructions field for feedback request is not configured correctly. Contact your Team Foundation Server administrator to correct the configuration.

    [Error] TF400654: Unable to configure Planning Tools. The following element contains an error: TypeFields/TypeField[type='ApplicationType']. TF400328: The application types for feedback request are not configured correctly. Contact your Team Foundation Server administrator to correct the configuration.

    [Error] TF400654: Unable to configure Planning Tools. Object reference not set to an instance of an object.

1 个答案:

答案 0 :(得分:0)

这些字段位于ProcessTemplate.xml文件中。你好像被抬起来了,所以我进去看看。它位于“WorkItem Tracking” - >“Process”文件夹下的流程模板中。这是一个reference。此外,对于反馈工作项,您的xml应如下所示:

<FeedbackRequestWorkItems category="Microsoft.FeedbackRequestCategory" pluralName="Feedback Requests" singularName="Feedback Request">    
  <States>
          <State value="Active" type="InProgress" />
          <State value="Closed" type="Complete" />    
  </States> 
</FeedbackRequestWorkItems> 
<FeedbackResponseWorkItems category="Microsoft.FeedbackResponseCategory" pluralName="Feedback Responses" singularName="Feedback Response">    
  <States>    
    <State value="Active" type="InProgress" />    
    <State value="Closed" type="Complete" />    
  </States> 
</FeedbackResponseWorkItems>