Проблема с конфигурацией платы 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.


person Frankie C    schedule 08.04.2014    source источник
comment
Ошибка TF400654 описана здесь: msdn.microsoft.com/en-us/library /hh913787.aspx   -  person Morten Frederiksen    schedule 09.04.2014
comment
Возможный дубликат: stackoverflow.com/questions/16988559/   -  person Morten Frederiksen    schedule 09.04.2014


Ответы (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>
person LeWoody    schedule 09.04.2014