Posts By : Miha

.NET IConfiguration pipeline viewer

When developing .NET Web APIs, we almost always need to load some configuration to function properly. This can be database connection strings, email configuration, Azure blob storage configuration, etc. That configuration can come from JSON files, Environment variables, secrets.json file, Azure Keyvault, and many other providers. We can also write our own configuration provider that…

read more
QAToolKit part 2 – Swagger library

Welcome to part 2 of the QAToolKit series, where I focus on the QAToolKit Swagger library. QA Toolkit is a collection of libraries, tools, and scripts for running automated jobs for assuring smooth development, general and QA testing, and running fitness functions for your applications. Now let’s focus on the Swagger library. If you are…

read more
QA Toolkit part 1

This is exciting! I’ve been brewing the idea about this for almost a year now, and it’s finally come to the realization. I developed and used many tools and scripts over the years, but I never compiled them in the packages that I could share with you. Finally, after a month of refactoring and preparing…

read more
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
On automation

We’ve been doing it “forever”. As a developer, I was always fascinated with writing scripts and tools that made my tasks less mundane and error-prone. And running them is a joy… 1, 2, 3, and BAMMM!!!. 🙂 For any number of reasons, instead of writing a script, we do repeating “keystrokes and clicks”, which is…

read more