Azure pipelines – Agent’s missing capability
Azure pipelines – Agent’s missing capability

Intro Today I would like to share with you how to fix following error occured while running Azure pipelines agent: [crayon-66395bed85e61764898192/] I was obviously trying to run some test on that machine using VSTest task, but vstest.console.exe nor Visual Studio was installed there. Fixing To fix our problem we need to somehow get vstest.console.exe on... » read more

Azure Pipeline for private repository in organization
Azure Pipeline for private repository in organization

About If you need to setup Azure Devops Pipeline for private repository that is under organization then keep reading… How to I had lot of trouble setting up that pipeline, I tryed to setup different Service connections, GitHub connections, but no luck. Azure devops seemed that it’s missing some access rights to see my private... » read more

Extending Azure Build Pipeline with PowerShell

The goal Goal of this post is to add powershell script task into Azure build pipeline, that will test or check custom conditions on your code base every time pull request is made. If those conditions are not met, script will let you know via comment on pull request, then will set build process as... » read more