TFS 테스트 사례 작업 항목이있는 파일을 첨부하려고합니다. 첫 번째 단계로서 TFS 첨부 파일 저장소에 첨부 파일을 만들려고합니다. 파일이 첨부 저장소에 만들어지면 AttachmentReference 개체가 생기고 해당 개체로 ID 595의 선택된 작업 항목으로 파일을 첨부하려고합니다. 그러나 CreateAttachmentAsync 함수 호출에서 프로세스가 중단됩니다. 도움을 주시면 감사하겠습니다.작업 항목에 파일 첨부 - TFS 2015
public void AttachFile(VssConnection connection)
{
//use the workItemTrackingHttpClient
try
{
using (WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>())
{
//create a work item
//WorkItem wi = witClient.GetWorkItemAsync(595, expand: WorkItemExpand.All).Result;
string filePath = @"C:\Temp\attach-file.PNG";
AttachmentReference attachRef = witClient.CreateAttachmentAsync(filePath, "simple").Result;
JsonPatchDocument patchDocument = new JsonPatchDocument();
//add fields to your patch document
patchDocument.Add(
new JsonPatchOperation()
{
Operation = Operation.Add,
Path = "/relations/-",
Value = new
{
rel = "AttachedFile",
url = attachRef.Url,
attributes = new { comment = "Adding new attachment for Test Case 2" }
}
}
);
WorkItem result = witClient.UpdateWorkItemAsync(patchDocument, 595).Result;
}
}
catch (Exception ex)
{
string msg = ex.Message;
}
}
기본 업로드 유형은 이미 '단순'으로 설정되어 있습니다. 전달할 필요가 없습니다. 또한 값은 enum 속성이어야합니다. 이게 너를 매달아 줄 수 있니? – tehbeardedone