Reputation: 571
We are using TFS Version 15.105.25910.0 and I have created a custom state - Blocked.
In the current Sprint View, when we change a task to this state, it disappears from the board as there is no column to support blocked (makes sense).
However if I click on User Stories, I can create a blocked column and move my user stories into blocked, but cannot do this with tasks.
Is there a reason why the current iteration view does not allow the creation of a custom column and/or how do I create a view similar to User Stories for Tasks only.
Upvotes: 1
Views: 137
Reputation: 51083
According to your description, seems you just want to add Blocked-state column in below page:
Use these Steps:
Add state item in TaskBacklog=>States section. For example:
<States>
<State type="Proposed" value="To Do" />
<State type="InProgress" value="In Progress" />
<State type="InProgress" value="Blocked" />
<State type="Complete" value="Done" />
</States>
As for more details how to use WitAdmin command to export and import process configure file. Please refer our official tutorial here--Import and export process configuration .The exported xml file could be edited through NotePad.
Upvotes: 2
Reputation: 41545
You need t modify the team project process config file and add there the new state ("Blocked").
Export the file with witadmin exportprocessconfig /collection:YOU_COLLECTION_URL /p:YOUR_TEAM_PROJECT /f:c:\processconfig.xml
Open the file (c:\processconfig.xml
) and search the <TaskBacklog category="Microsoft.TaskCatgerory" ... >
node.
In the above node you have States
node, add there the new state:
<States>
<State type="Proposed" value="Active" />
<State type="Proposed" value="Blocked" />
<State type="InProgress" value="In Progress" />
<State type="Complete" value="Done" />
</States>
witadmin importprocessconfig /collection:YOUR_COLLECTION_URL /p:YOUR_TEAM_PROJECT /f:c:\processconfig.xml
Now you will see in the iteration board also the Blocked state :)
Upvotes: 0