Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
TFS api 2010、2012 を使用して添付ファイル コレクションの添付ファイルを削除する方法。wi.Attachments.Clear(); しか知りません。すべての添付ファイルを削除します。
この先どう?試して成功しました。
//wi is a WorkItem wi.Open(); for (int i = wi.Attachments.Count - 1; i >= 0; i--) { if (wi.Attachments[i].Name == "Attach1.txt") wi.Attachments.RemoveAt(i); } wi.Save(); wi.Close();