TFS APIs for creating workitem templates?

Of course, it’s entirely possible to create work items, get a list of work items, etc. in TFS.

In addition to this, we must have functionality that allows our users to create their own work item templates for different types of files.

Are TFS client APIs available for uploading work item templates to a TFS server?

+3
source share
1 answer

There is a method for obtaining (XML) definitions: Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemType.Export

And Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemTypeCollection.Importthat looks like you can load XML to create a new work item type.

, TFS .

+6

Source: https://habr.com/ru/post/1704071/


All Articles