Making unit test coverage result, available in your Azure DevOps pipeline builds w. .Net 8.0

If you aim to enhance the quality of your software modules through comprehensive unit test coverage, incorporating a unit test coverage report into your development process can be highly beneficial. Follow these straightforward steps to seamlessly integrate test coverage analysis into your project: Add coverlet packages: Begin by including the necessary packages in your test... » read more

Add a timer triggered Webjob for .NET 5.0

In a similar construction as the previous blog about creating webjobs for the .NET Framework, we needed a Sync WebJob now for the same kind of solution except that the Web App was a .NET 5.0 blazor solution. Therefore we needed to create an Azure WebJob which could run alongside this. Unfortunately, there was not... » read more

Deploying a DevExpress (Express APP)XAF Web Application to an Azure Web APP Subscription Using the “MySql In-app” Database

Why Express App (XAF)? I have been using Express APP (XAF) from Developer Express for applications for as long as I can remember; mostly to play around with. The reason? I have been so fascinated by the development process involved (building the business objects first) and the rapid development possibilities this framework has. On a... » read more

How to Use AutoMapper With .NET Core 3.1 Web API

Start by installing the AutoMapper extension from the package manager in your project. In PowerShell, or with the package manager console in Visual Studio, type: Register a service in ConfigureServices in the startup.cs file: Add an AutoMapping.cs file with the following content: Inject a mapper into your controller: Now you can do the mapping like... » read more

How to Print a PDF File From a .NET Program!

Recently, I was working on a project where we had to print a PDF file to a printer from within a C# program. I ended up creating a PDFFilePrint NuGet Package which you can find at the end of this link. Simply type the following into the Visual Studio console: Install-Package PDFFilePrint -ProjectName MyProject