我想将文件附加到类型的工作项bug
。在将错误详细信息保存到服务器时,我有这个附件。
Suneetha
问问题
6249 次
2 回答
8
TeamFoundationServer server = TeamFoundationServerFactory.GetServer("TFSRTM08");
WorkItemStore store = (WorkItemStore)server.GetService(typeof(WorkItemStore));
WorkItem workItem = store.Projects["ABC"].WorkItemTypes["Bug"].NewWorkItem();
//Set other work item properties.
workItem.Attachments.Add(new Attachment("C:\Temp\MyAttachment.txt", "Comment About Attachment"));
workItem.Save();
于 2009-06-08T09:52:17.947 回答
0
如果您下载 Visual Studio SDK,其中应该有一个使用 TFS API 处理工作项和附件的示例。
于 2009-06-08T09:42:34.207 回答