TFS2013.4 Visual Studio Scrum 2013.4 Template

We use the Visual Studio Scrum 2013.2 process template on TFS2013.2 without any problems. Today we upgraded to TFS2013.4 (and Visual Studio 2013.4), no problem during the upgrade. One of the new features is a custom option whether errors are lagged or not.

The screen should look like the last screenshot in the link above (note the new function in the orange field at the bottom, where it says "Errors" under the heading "Teams", choose whether to track errors in their backlog), but instead I see this:

enter image description here

TF400917: . , . ,

:

Scrum, .

( ), , .

, - , 2013.2, 2013 .4 ( , 2 RTM TFS2013), , .

, ( Scrum 2013.4), . ?

+4
1

, Microsoft . , MSF . Scrum , . , ( ), .

:

, Microsoft.RequirementCategory Microsoft.BugCategory:


Categories.xml:

    <CATEGORY name="Bug Category" refname="Microsoft.BugCategory"> <DEFAULTWORKITEMTYPE name="Bug" /> </CATEGORY> <CATEGORY name="Requirement Category" refname="Microsoft.RequirementCategory"> <DEFAULTWORKITEMTYPE name="Product Backlog Item" /> <WORKITEMTYPE name="Bug" /> </CATEGORY>

ProcessConfiguration.xml:

<BugWorkItems category="Microsoft.BugCategory" pluralName="Bugs" singularName="Bug">
  <States>
    <State value="New" type="Proposed" />
    <State value="Approved" type="Proposed" />
    <State value="Committed" type="InProgress" />
    <State value="Done" type="Complete" />
  </States>
</BugWorkItems>

MTM, .


MTM:

Categories.xml:

<CATEGORY name="Bug Category" refname="Microsoft.BugCategory">
  <DEFAULTWORKITEMTYPE name="Bug" />
</CATEGORY>
<CATEGORY name="Requirement Category" refname="Microsoft.RequirementCategory">
  <DEFAULTWORKITEMTYPE name="Product Backlog Item" />
  <WORKITEMTYPE name="Bug" />
</CATEGORY>
<CATEGORY name="Planning Category" refname="Custom.PlanningCategory">
  <DEFAULTWORKITEMTYPE name="Product Backlog Item" />
</CATEGORY>

Backlog , Custom.PlanningCategory Microsoft.RequirementCategory, ProcessConfiguration.xml:

<RequirementBacklog category="Custom.PlanningCategory" parent="Microsoft.FeatureCategory" pluralName="Product Backlog" singularName="Product Backlog Item">

ProcessConfiguration.xml:

<BugWorkItems category="Microsoft.BugCategory" pluralName="Bugs" singularName="Bug">
  <States>
    <State value="New" type="Proposed" />
    <State value="Approved" type="Proposed" />
    <State value="Committed" type="InProgress" />
    <State value="Done" type="Complete" />
  </States>
</BugWorkItems>

. , Backlog Sprint.

+5

All Articles