if you have followed Microsoft’s “Add a custom pipelines task extension” it does a great Job on giving you the basics of how you can create a new NodeJS custom pipelines task, and it gives a very good starting point …
Matt Mercan Articles.
Automation is to DevOps as a telescope is to astronomy. Besides black art, there is only automation and mechanization. Federico García Lorca (1898–1936), Spanish poet and playwright I created Azure DevOps Custom Pipeline Tasks for a while. In time environment …
I am a big fan of KUDU. Being able to run PowerShell commands where my code runs helps me to diagnose issues otherwise, it will be hard to handle. This power (Powershell) can be used the wrong way to manipulate the …
I spend some of my time on Console. Frequently I use several CLI tools dotnet, kubectl, git, gh, and docker are just a few examples.Net Cli tool helps us to create our cli executables, but you can simply ask, “why …
I have many builds, and not all use the same tasks (tools) to run the tests. I will try to cover collecting code coverage numbers inside of a build, and failing the build if percentages are lower than expected dotnet …
10 Years ago I was working on Hospital Information Systems (HIS) with 1000s of clients and Applications dependencies are Oracle Database, and 2 Web Services Provided by Government, Laboratory Information System (LIS) has some serial port and USB connection requirements, …
Last night I spent a few hours trying to figure out what is wrong with my JWT token as I was getting 401 Error when I try to access my Apis when I run them locally in Docker for Windows …
This is going to be a long post as I discover the process step by step and the pitfalls I fell along the way.My APIs had a single schema to authenticate Azure AD users this worked well for a long …
I am trying to get better at testing, on .NET Core I was getting better, but angular projects in SonarQube had always %0 test coverage. even angular has a built-in testing environment, I have never used it before.I use CI-CD …
While I was working on my side project Sentinel(https://github.com/mmercan/sentinel) I have several Dotnet Core projects, I have separate docker images for testing and I used dotnet test as below. They worked quite nicely and having no problem until there are …