516 questions
Tooling
0
votes
0
replies
26
views
Azure DevOps Extension – Prevent recursive onFieldChanged event when updating fields programmatically
I'm developing an Azure DevOps Form Control extension that updates work item fields based on certain configuration rules.
For example, I have two fields:
Field A
Field B
The logic is:
When A ...
0
votes
0
answers
44
views
Better Solidify tokenization task in Azure DevOps
For our deployments to Azure app services we like to use the solidify tokenization task, whilst it has worked for a long time, we still have 2 issues with it:
only runs on windows agents
the task ...
0
votes
0
answers
29
views
Is it possible to restrict Azure DevOps work item context/toolbar menu to specific work item types?
I’m building an Azure DevOps Server 2022 extension that adds a custom menu item to the work item toolbar (i.e., the top menu inside the work item form).
I'm using the following extension target:
"...
0
votes
0
answers
43
views
How to auto-populate field based on another field?
I am working with Azure DevOps Server 2020.1 using XML process. I have created custom fields where the user can enter different kinds of relationships.
E.g. one field is "references" and one ...
0
votes
1
answer
100
views
Get Root Area Path ID [Azure Devops Extension]
I am developing an extension for Azure Devops. The extensions aims to render content on the work item page depending on the work item's area path ID. I managed to retrieve the available area path IDs ...
0
votes
1
answer
94
views
Include multiple versions of an azure devops custom task without duplicating source code
I am developing a custom Azure DevOps extension that contains a custom pipeline task written in TypeScript. The source code when compiled produces JavaScript files in place next to their TypeScript ...
0
votes
1
answer
268
views
Azure Devops Pull Request Review Integration with AzureOpenAI instance
We are using Azure Devops Server 2022 on-premise and we have a private Azure OpenAI instance enabled with a private endpoint. In VSTS marketplace, we were able to find many extensions:
https://...
0
votes
1
answer
116
views
tfx-cli: Unable to set version and overrides-file when packaging vss-extension
I'm following the guidance for building vss-extensions where I split my vss-extension.json into two parts:
vss-extension.json: contains all the contributions and primary parameters, including id, ...
0
votes
1
answer
59
views
How to Add Expand Button for Custom Description Field in Azure DevOps Server 2022 Extension?
I am developing a custom extension for Azure DevOps Server 2022, which includes a custom description field with additional functionalities beyond the default one. My goal is to add an maximize button ...
0
votes
0
answers
49
views
Azure DevOps extension: Use packaged node_modules instead of global node modules
I am developing a custom pipeline task for Azure DevOps to extend commit lint's functionality. All source files (and node modules) have been packaged inside the .vsix file. However when running the ...
0
votes
0
answers
88
views
Azure DevOps Extension: How to validate links when a new work item is created and attached automatically?
I am developing an Azure DevOps extension to validate work item links when they are added in a work item form. I am working with on-premises Azure DevOps and using an XML process model.
The Problem:
...
2
votes
0
answers
26
views
Can I modify the Azure Devops Pr Page Comment Box
I am trying to add a button to pr page comment box on azure devops. However I couldn’t find the connection point to do so in the documentation.
I tried to add it to pr-review page but i couldnt here ...
1
vote
1
answer
80
views
Gets 401 when trying to create an inherited process using the Azure DevOps REST API
I'm trying to create an inherited process from my Azure DevOps extension but get 401.
I've specified the vso.work_full scope and followed the instructions from here https://learn.microsoft.com/en-us/...
-1
votes
1
answer
120
views
In Azure DevOps, need to view and prioritize Features, Product Backlog Items and Bugs in one list in relation to each other
In Azure DevOps, need to view and prioritize Features, Product Backlog Items and Bugs in one list in relation to each other.
So in Azure DevOps -> Boards -> Backlogs -> parents: Off -> you ...
0
votes
1
answer
219
views
On Azure DevOps is there any way to make the Environments view more useful?
My team has a pretty decent DevOps process built around Terraform and ADO pipelines. The weak point is ADO's Environments page. It doesn't show anything useful.
We have about two dozen deployments ...
0
votes
2
answers
147
views
How do I use the existing yml CI along with dependabot yml?
I currently have an existing yml in a specific folder for CI build. Every time a PR (change) is checked in, we will trigger the CI build.
Now, how do I add or combine the yml for dependabot, ...
0
votes
1
answer
176
views
Unauthorized on the dependabot reviewers
I'm trying to setup dependabot on azure devops on my repo. Below is my yml file:
version: 2
updates:
- package-ecosystem: 'nuget'
directory: '/'
target-branch: 'dev'
open-pull-requests-...
-1
votes
1
answer
189
views
What extension to use for the ADO task 'Azure-Kusto.PublishToADX.PublishToADX.PublishToADX@3'
I have this ADO task in my Azure devops pipeline which is not running looking for the extension.
'Azure-Kusto.PublishToADX.PublishToADX.PublishToADX@3'
What exact extension do I need to download from ...
0
votes
1
answer
406
views
Remove Direct access from Azure DevOps organization's access level through an API or a Script
I need help with Removing Direct access from Azure DevOps organization's access level through an API or a Script, with the select feature we are only able to remove only 100 users but we have more ...
0
votes
1
answer
540
views
How to add users to a particular repository using API
I am struggling in going through the API documentation for Azure devops on how to add a user to a particular repo using Rest API with read and write access to a git repository. Please guide me on this....
0
votes
0
answers
144
views
Cascade picklist workitem field in Azure Devops Server 2022
We were trying to achieve cascaded picklist feature to our work item, so that we can use the Work item for our support request from end users where want to achieve support hierarchy as provided in ...
0
votes
2
answers
105
views
RESTful WIQL Interface for Azure DevOps Extension SDK
I'm writing an Azure DevOps extension using the azure-devops-extension-sdk in React.js. I'm trying to query our existing Product Backlog Items for one with a matching title to get the id for that PBI ...
0
votes
2
answers
421
views
How to debug extension in Azure DevOps Server
Currently, I am implementing an extension for Azure DevOps cloud & Server.
This extension is something that will add a pipeline task.
When I was testing this extension I encountered an issue. ...
1
vote
1
answer
317
views
Build SSIS project from ADO
I'm helping our development team to build and deploy SSIS project from Azure DevOps. I'm new to SSIS and this is my first time.
When building the project, it is erroring out because it is looking for ...
0
votes
1
answer
330
views
Execute multiple http requests then wait in Azure DevOps server task
I'm writing an Azure DevOps extension in which I'd like to create a server task to execute a couple of http requests and wait for the completion event from an external source. My problem is that the ...