在 Devops 中查找自定义字段的路径
Finding Path of Custom Field in Devops
我正在构建一个控制台应用程序,它以编程方式在 Azure DevOps 中创建工作项。到目前为止,我已经成功地将值设置为预定字段。例如,通过执行以下代码
`
Uri uri = new Uri(_uri);
string personalAccessToken = _personalAccessTocken;
string project = _project;
// Creating credentials using PAT
VssBasicCredential credentials = new VssBasicCredential(string.Empty, _personalAccessTocken);
JsonPatchDocument patchDocument = new JsonPatchDocument();
//add fields and their values to the patch document
// See this link below to find out the path of Work Item Field:
// https://docs.microsoft.com/en-us/azure/devops/boards/work-items/guidance/work-item-field?view=azure-devops
patchDocument.Add(new JsonPatchOperation()
{
Operation = Operation.Add,
Path = "/fields/System.Title",
Value = "Test - Please Ignore"
}`
到这里,设置值成功,因为我在微软文档中找到了Title字段(/fields/System.Title)的路径
但是,我遇到了一个由名为 Errormsgtag 的客户创建的自定义字段,由于缺少路径,我无法为其设置值。
问题是:如何找到自定义字段的路径?微软有什么预定的规则吗?
提前致谢
还有一个休息 api,您可以在其中通过名称请求 WorkItemField,然后您可以使用带有 id 的 workitemfielddefinition -> https://docs.microsoft.com/en-us/rest/api/azure/devops/wit/fields/get?view=azure-devops-rest-5.0
我认为客户端 dll 已经包装了这个函数,但我必须查找位置...
我正在构建一个控制台应用程序,它以编程方式在 Azure DevOps 中创建工作项。到目前为止,我已经成功地将值设置为预定字段。例如,通过执行以下代码
`
Uri uri = new Uri(_uri);
string personalAccessToken = _personalAccessTocken;
string project = _project;
// Creating credentials using PAT
VssBasicCredential credentials = new VssBasicCredential(string.Empty, _personalAccessTocken);
JsonPatchDocument patchDocument = new JsonPatchDocument();
//add fields and their values to the patch document
// See this link below to find out the path of Work Item Field:
// https://docs.microsoft.com/en-us/azure/devops/boards/work-items/guidance/work-item-field?view=azure-devops
patchDocument.Add(new JsonPatchOperation()
{
Operation = Operation.Add,
Path = "/fields/System.Title",
Value = "Test - Please Ignore"
}`
到这里,设置值成功,因为我在微软文档中找到了Title字段(/fields/System.Title)的路径
但是,我遇到了一个由名为 Errormsgtag 的客户创建的自定义字段,由于缺少路径,我无法为其设置值。
问题是:如何找到自定义字段的路径?微软有什么预定的规则吗?
提前致谢
还有一个休息 api,您可以在其中通过名称请求 WorkItemField,然后您可以使用带有 id 的 workitemfielddefinition -> https://docs.microsoft.com/en-us/rest/api/azure/devops/wit/fields/get?view=azure-devops-rest-5.0
我认为客户端 dll 已经包装了这个函数,但我必须查找位置...