Пример #1
0
 public static JsonPatchDocument AddTitle(this JsonPatchDocument jsonPatchDocument, string title)
 {
     jsonPatchDocument.AddStringField(AzureDevOpsFields.Title, title);
     return(jsonPatchDocument);
 }
Пример #2
0
        public static JsonPatchDocument AddTags(this JsonPatchDocument jsonPatchDocument, List <string> tags)
        {
            jsonPatchDocument.AddStringField(AzureDevOpsFields.Tags, string.Join("; ", tags));

            return(jsonPatchDocument);
        }
Пример #3
0
 public static JsonPatchDocument AddDescription(this JsonPatchDocument jsonPatchDocument, string description)
 {
     jsonPatchDocument.AddStringField(AzureDevOpsFields.Description, description);
     return(jsonPatchDocument);
 }
Пример #4
0
 public static JsonPatchDocument AddSystemInfo(this JsonPatchDocument jsonPatchDocument, string systemInfo)
 {
     jsonPatchDocument.AddStringField(AzureDevOpsFields.SystemInfo, systemInfo);
     return(jsonPatchDocument);
 }
Пример #5
0
 public static JsonPatchDocument AddReproSteps(this JsonPatchDocument jsonPatchDocument, string reproSteps)
 {
     jsonPatchDocument.AddStringField(AzureDevOpsFields.ReproSteps, reproSteps);
     return(jsonPatchDocument);
 }
Пример #6
0
 public static JsonPatchDocument AddAcceptanceCriteria(this JsonPatchDocument jsonPatchDocument, string acceptanceCriteria)
 {
     jsonPatchDocument.AddStringField(AzureDevOpsFields.AcceptanceCriteria, acceptanceCriteria);
     return(jsonPatchDocument);
 }