This is possible in TFS 2013.
- Open command prompt
- CD cd% programfiles (x86)% \ Microsoft Visual Studio 12.0 \ Common7 \ IDE
- witadmin exportprocessconfig / collection: your col./p: project / f: file
- Edit the exported file, see below
- witadmin importprocessconfig / collection: your col./p: project / f: file
The process configuration should contain the colors of the work item of the section, if the section is missing, just add it (for example, at the end just to the end of ProjectProcessConfiguration)
<WorkItemColors> <WorkItemColor primary="FF009CCC" secondary="FFD6ECF2" name="Product Backlog Item" /> <WorkItemColor primary="FFF2CB1D" secondary="FFF6F5D2" name="Task" /> <WorkItemColor primary="FFCC293D" secondary="FFFAEAE5" name="Bug" /> </WorkItemColors>
Primary color is used in lists and secondary color in boards.
Fredrik
source share