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

How to create a work item with multi-line description with code? #307

Open
liangming2003 opened this issue Mar 19, 2021 · 0 comments
Open

Comments

@liangming2003
Copy link

Below is code for creating a work item.

The "\r\n" in the string description is not recognized, so the description text of newly created item is on one line.

How to create a work item with multi-line description with code, thanks.

 public static WorkItem CreateWorkItem(VssConnection connection, string title, string type, string description, string tags)
        {

            string project = "xxx";
      
            // Construct the object containing field values required for the new work item
            JsonPatchDocument patchDocument = new JsonPatchDocument();

            patchDocument.Add(
                new JsonPatchOperation()
                {
                    Operation = Operation.Add,
                    Path = "/fields/System.Title",
                    Value = title
                }
            );

            patchDocument.Add(
                new JsonPatchOperation()
                {
                    Operation = Operation.Add,
                    Path = "/fields/System.Description",
                    Value = description
                }
            );

     

            // Get a client        
            WorkItemTrackingHttpClient workItemTrackingClient = connection.GetClient<WorkItemTrackingHttpClient>();

            // Create the new work item
            WorkItem newWorkItem = workItemTrackingClient.CreateWorkItemAsync(patchDocument, project, type).Result;

            Console.WriteLine("Created work item ID {0} {1}", newWorkItem.Id, newWorkItem.Fields["System.Title"]);

            return newWorkItem;
        }
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant