.NET

Reporting .NET 5 XUnit Code Coverage in Codecov via GitHub Actions and Coverlet 

You might remember my earlier post where I described how to set up code coverage reporting for .NET Core 3 using AppVeyor + OpenCover + Codecov. Time has moved on, .NET 5 has arrived, and the best practices have changed, so let's see how to collect code coverage for .NET projects in 2021.

Read  

Running .NET Core 3 XUnit Code Coverage in AppVeyor Using OpenCover and Codecov 

I love AppVeyor. It's my go-to CI/CD service for .NET projects. I use it for both personal and work open-source projects. I also love automation of all kinds so, among other things, I want my test coverage reports to be automatically generated with every build.

Read  

Referencing Multiple Versions of the Same Assembly in a Single Application 

We've all been there — our application depends on a version of assembly that's incompatible with the version that's referenced by the NuGet package we've just installed. The situation gets worse when the conflict occurs between two third-party NuGet packages. What can we do about it? What does Kentico do about it?

Read