I am using the VSTS.NET client libraries and I am trying to create a path to the scope. I already have one WorkItemTrackingHttpClient. On this client, I can create the path to the area using the method CreateOrUpdateClassificationNodeAsync. But I can not set the parent path in the area.
var node = new WorkItemClassificationNode();
node.StructureType = TreeNodeStructureType.Area;
node.Name = "Test";
var result = await this.Client.CreateOrUpdateClassificationNodeAsync(node, "Team-Project", TreeStructureGroup.Areas);
How to set parent path for region path?
source
share