tfs - Adding columns to scrum board -
i using tfs2013 , have spent lot of effort editing task wit process allow 2 new states tasks... "testing" , "blocked"... have edited task.xml file on server , added 2 new states , valid transitions , these states.
the states show when editing task , flow , new states seem work fine.
the problem cannot figure out how add these new states swimlanes on task board. of microsoft documentation states columns defined process states.
please not "in-sprint" task board... not kanban board (that 1 easy edit)
here xml have added task wit xml :
<state value="testing"> <fields> <field refname="microsoft.vsts.common.closeddate"> <empty /> </field> <field refname="microsoft.vsts.common.closedby"> <allowexistingvalue /> <empty /> </field> </fields> </state> <state value="blocked"> <fields> <field refname="microsoft.vsts.common.closeddate"> <empty /> </field> <field refname="microsoft.vsts.common.closedby"> <allowexistingvalue /> <empty /> </field> </fields> </state> ......
<transition from="active" to="testing"> <reasons> <defaultreason value="development completed" /> </reasons> </transition> <transition from="testing" to="closed"> <reasons> <defaultreason value="testing passed" /> </reasons> </transition> <transition from="testing" to="active"> <reasons> <defaultreason value="testing failed - fixing" /> </reasons> </transition> <transition from="testing" to="new"> <reasons> <defaultreason value="testing failed - ready fix" /> </reasons> </transition> <transition from="active" to="blocked"> <reasons> <defaultreason value="impediment encountered" /> </reasons> </transition> <transition from="blocked" to="active"> <reasons> <defaultreason value="impediment removed" /> </reasons> </transition> <transition from="blocked" to="closed"> <reasons> <defaultreason value="closed due impediment" /> </reasons> </transition>
have added new states process configuration?
if use "witadmin exportprocessconfiguration" can add additional stated column mapping. need tell tfs wither states should allign "todo", "inprogress", or "done" modes.
once have modified , uploaded should work.
Comments
Post a Comment