Reputation: 21
I have a team project which is migrated from VS2008 to VS/TFS 2012. In this team project, I need to hide two work item types - 'Shared Steps' and 'User Story' in Team explorer - [work items|New Work items] menu. I have added/defined this under the hidden category item in the WIT category file and imported the categories using witadmin command into team project. As a result 'Shared Steps' WIT got hidden but not the 'User Story' WIT which is still visible under new work items menu. How can I make 'User Story' WIT hide in this case?
Given below the xml portions that shows how I defined in WIT category file.
<?xml...
<CATEGORY name="Requirement Category" refname="Microsoft.RequirementCategory">
<DEFAULTWORKITEMTYPE name="User Story" />
</CATEGORY>
.........
<CATEGORY name="Shared Step Category" refname="Microsoft.SharedStepCategory">
<DEFAULTWORKITEMTYPE name="Shared Steps" />
</CATEGORY>
.........
<CATEGORY name="Hidden Types Category" refname="Microsoft.HiddenCategory">
<DEFAULTWORKITEMTYPE name="Shared Steps" />
<WORKITEMTYPE name="User Story" />
</CATEGORY>
........>
Any extra configuration in WIT categories or any other way out?
Thanks in advance!
/Jimmy
Upvotes: 0
Views: 1027
Reputation: 1124
I think this is a bug in Visual Studio. I tried doing the same thing in my local TFS instance and here are the results:
Upvotes: 0