How to integrate your Roslyn Analyzer project with SonarQube
Right now there are 2 ways to add rules from a Roslyn Analyzer project into SonarQube. In this post I want to show you how both options work and also what’re the pros and cons of one over the other.
5 ways to deploy a .NET Lambda using AWS CDK
This post is going to walk you through 5 different ways to deploy a .NET lambda using AWS CDK.
How to modernize a legacy .NET Framework WCF app using CoreWCF and .NET 7
CoreWCF is a port of the Windows Communication Foundation (WCF) framework to the latest .NET version. The main goal of the CoreWCF project is to enable existing WCF services to be moved to .NET 7. In this post I’ll show you step by step how easy (or hard) is the process of migrating an existing .NET 4.7 WCF app to .NET 7 using the CoreWCF project.
How to automatically purge stale images from Azure Container Registry using ACR Tasks
Keeping your container registry free of stale or unwanted images is a task that often gets overlooked when beginning working with containers in the enterprise. In this post, I want to show you how you can use ACR Tasks to automate this process when working with Azure Container Registry.
Trying out the built-in container support for the .NET SDK
A few months ago the built-in container support for the .NET SDK was announced. In this post I’ll put this feature to test, I’ll try to migrate from an application that contains a rather complex Dockerfile to a new version that has no Dockerfile and instead uses the container support feature.