Using Azure DevOps private nuget feed
Using Azure DevOps private nuget feed

Intro I decided to write this post for anyone struggling to setup and use private nuget feed from Azure DevOps, because in my opinion the microsoft documentation is little bit confusing in this case. Prerequisities nuget – https://www.nuget.org/downloads Creating nuget feed Creating new feed is straigt forward. Open Azure DevOps, and select Artifacts in side... » read more

vstest.console troubleshooting
vstest.console troubleshooting

Intro In previous post I’ve shown you how to fix VSTest task in Azure DevOps. This post is follow up where I share with you how to overcome problems you might face while running vstest.console.exe. Getting the vstest.console You have to download nuget package https://www.nuget.org/packages/Microsoft.TestPlatform/ which contains vstest.console.exe under \tools\net451\Common7\IDE\Extensions\TestPlatform. Here is a short vstest.console... » read more

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-6634f379bf02c883752335/] 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

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