Skip to content
This repository was archived by the owner on Oct 4, 2021. It is now read-only.
This repository was archived by the owner on Oct 4, 2021. It is now read-only.

GlobalLists #317

Description

@ekhcentrics

I am migrating our organization from TFS 2013 to AzureDevOps 2020. (On our own server, not hosted)

Part of the 2013 integration was getting global lists, adding additional values, updating the global lists.

Psuedo code from 2013 integration:

WorkItemStore workItemStore = <retrieved elsewhere in the code>;
XmlDocument globalListsDoc = workItemStore.**ExportGlobalLists**();

XmlNodeList lists = globalListsDoc.SelectNodes("*/GLOBALLIST");
if (lists != null) {
    // <snip> ... find the list of the appropriate name, add <LISTITEM> items if needed </snip>
}

// Update: 
workItemStore.**ImportGlobalLists**(globalListsDoc.FirstChild as XmlElement);

How would I accomplish this in the new world order?
Preferrably not via command line - but via client libaries or rest calls?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions