Проблема с настройкой платы TFS

Я пытаюсь настроить плату TFS для нового командного проекта, и мне удалось создать рабочие элементы, состояния, поля и т. Д. Однако я получаю это при попытке настроить функции TFS.

Вот мои вопросы:

  1. Где я могу найти "TypeFields/TypeField[type='ApplicationType'"?
  2. Должен ли я пойти дальше и уничтожить рабочие элементы и запустить функцию включения, чтобы избавиться от TF400612?

Журнал ошибок / предупреждений:

[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 ответ

Эти поля находятся в файле ProcessTemplate.xml. Похоже, у тебя все в порядке, так что я пойду и посмотрю. Он находится в вашем шаблоне процесса в папке "WorkItem Tracking"->"Process". Вот ссылка. Кроме того, ваш xml должен выглядеть ниже для рабочих элементов Feedback:

<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>
Другие вопросы по тегам