Posts Tagged : azure devops

    Modify YML files with PowerShell

    In this short post, I’ll share a simple script to modify the YML files. You can also use the script in the CI/CD pipelines, an example for Azure DevOps is below. To read the YML file we will use powershell-yaml module, which you can install and active like this: Install-Module -Name powershell-yaml Import-Module powershell-yaml 12…

    read more
    Add release annotations to Application Insights from Azure DevOps

    When we are releasing software to different environments through our release pipelines, we usually want to mark that in our monitoring system. Normally that is a time-stamp or annotation and can help us diagnosing performance issues if they arise. We extensively use Application Insights for monitoring and logging system and Azure DevOps (formerly VSTS) for…

    read more