Questions tagged [azure-pipelines-tasks]

216 questions
-1
votes
1 answer

Access to private feed from Azure Devops pipeline

I want to create access to my private feed from pipeline (Project A), but everytime when i try run dotnet restore to restore .net project with nugets from private feed (project scoped feed in Project B) i got error NU1301: Unable to load the service…
-1
votes
1 answer

VS 2019 post build commands & Azure pipeline conflict

Similar questions here and here didn't work in my case. The xcopy commands I use in Post Build per project won't work in Azure pipelines and build fails. Without getting this done, i can't publish to staging. So basically I am stuck. My source…
-1
votes
1 answer

How to transform Web.Config using variables instead of XML transform at deployment?

We currently have the following Web.Release.config file that transforms Web.config at deployment time.
-1
votes
1 answer

How to populate dynamic data in azure pipeline's custom task.json input options

I am developing a task where i need to populate the input fields with dynamic options e.g. via an API calls and show it to user in Pipeline's TASK UI. I can see we have type : connectedServices:* , my assumption(Not sure if i am right) is that…
-1
votes
1 answer

How to provide multiple test categories in vstest task in azure pipelines

My project has some Nunit tests with certain tags called categories. For example: 32 bit app tests have x32 as tag and 64 bit app tests have x64 as tag. Now using vstest task i am able to run tests for one category like this: TestCategory=x32 when…
-1
votes
2 answers

How to get azure devops release pipeline deployment logs using Azure DevOps REST API?

I came across two REST APIs but not sure will fetch the deployment logs. GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/releases/{releaseId}/logs?api-version=5.1-preview.2 GET…
1 2 3
14
15