Editor inside PowerShell/Windows Terminal
Editor inside PowerShell/Windows Terminal

Intro So I was looking for some lightweight editor as alternative to VS Code, because I often need to quickly edit text files right from Windows Terminal. Luckily I knew nano from linux and in this post I’ll show you how to use it in Windows Terminal. Editing inside Windows Terminal In order to use... » 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-6634c30e573fd912129987/] 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