I wish to add or list items from a global list in TFS 2010 via the TFS SDK.
I have discovered the following methods:
- XmlDocument WorkItemStore.ExportGlobalLists()
- void WorkItemStore.ImportGlobalLists(XmlElement listsElement);
- void WorkItemStore.ImportGlobalLists(string lists);
Which appear to export/import all the global lists as a single Xml document.
Is there any way to just update a single global list (i.e. adding/removing an individual item) as opposed to fetching or replacing the entire set of global lists.
Also, is there any where within the TFS user interface that individual user can make changes to a global list - or is this not something a user is expected to do?