I am trying to create a workitem through code. Currently I am using the following code to set Assigned to.
wi.Fields["System.AssignedTo"].Value = "TfsUser display name";
Currently I am setting the TFS user display name. I have following doubts.
Is Display name in TFS is unique?
If not how to set a unique name like account name as assigned to?
Display new is the only value that you can use to at this field in a work item.
You can query the user identity system and retrieve the display name from TFS for the user that you want.
Mihnea
What about
newWorkItem.Fields[CoreField.AssignedTo].Value ="person";
来源:https://stackoverflow.com/questions/30641279/how-to-set-assigned-to-in-tfs-work-item-through-code