-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
24 lines (21 loc) · 858 Bytes
/
Program.cs
File metadata and controls
24 lines (21 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using AzureWorkItemAutomation.Factories;
using AzureWorkItemAutomation.Models;
namespace AzureWorkItemAutomation
{
internal class Program
{
static void Main(string[] args)
{
AzureDevopsServicesClient httpClient = new AzureDevopsServicesClient("", "https://dev.azure.com/pwc-us-tax-tech/USTaxPlatform/");
BasicWorkItemProperties props = new BasicWorkItemProperties()
{
title = "Rud Test",
areaPath = @"USTaxPlatform\All Functional Areas\Teams Integration\3Cloud",
iterationPath = @"USTaxPlatform\FY 2024\FY24 Sprint 22",
assignedToEmail = "Rud Galangco (US)<rud.galangco@pwc.com>"
};
TaskWorkItem sampleTask = new TaskWorkItem(httpClient, props);
var a = sampleTask.Create();
}
}
}