Home
Programming With Wolfgang
Cancel

Upgrade a Microservice from .NET Core 3.1 to .NET 5.0

Microsoft released the next major release, called .NET 5.0 which succeeds .NET Core 3.1. .NET 5.0 comes with a lot of improvements and also with C# 9. It is also the first step to a unified .NET pl...

Run xUnit Tests inside Docker during an Azure DevOps CI Build

Running your build inside a Docker container has many advantages such as platform independence and better testability for developers. These containers also bring more complexity though. In my last...

Build Docker in an Azure DevOps CI Pipeline

In my last post, I showed how to build a .NET Core Microservice with an Azure DevOps CI pipeline. Today, I want to build these microservices in another Azure DevOps CI pipeline and push the images ...

We moved to Jekyll

When I started my blog, I was looking for something simple so I can write my posts and don’t have to manage much behind the scenes. WordPress was the most known blogging platform back then and I al...

Run the CI Pipeline during a Pull Request

In modern DevOps culture, the goal is to get features as fast as possible into production. Additionally, we have to guarantee that these new features don’t break anything. To do that, I will show i...

Build .NET Core in a CI Pipeline in Azure DevOps

A crucial feature of DevOps is to give the developer fast feedback if their code changes work. This can be done by automatically building code and running tests every time changes are checked-in. T...

Azure Static Web App with Blazor

Last week at Ignite Microsoft announced that the preview of Azure Static Web App now also supports Blazor WebAssembly. In this post, I will show how to create a Blazor client-side (WebAssembly) app...

Run Tests inside Docker during CI

Running your build inside a Docker container has many advantages like platform independence and better testability for developers. These containers also bring more complexity though. In my last pos...

Create a Docker Image in an Azure DevOps CI Pipeline

In my last post, I showed how to build a .NET Core Microservice inside a Docker container. Today, I want to build this microservice in an Azure DevOps CI pipeline and push the image to Docker Hub. ...

Add Docker to an ASP .NET Core Microservice

Microservices need to be deployed often and fast. To achieve this, they often run inside a Docker container. In this post, I will show how easy it is to add Docker support to a project using Visual...