Skip to content

Installation

Cédric Belin edited this page Jan 27, 2025 · 3 revisions

Requirements

Before installing LCOV Reports for .NET, you need to make sure you have the .NET SDK and the .NET CLI tool up and running.

You can verify if you're already good to go with the following command:

dotnet --version
# 9.0.102

Installing with NuGet package manager

1. Install it

From a command prompt, run:

# At the root of your project folder...
dotnet add package Belin.Lcov

2. Import it

Now in your C# code, you can use:

using Belin.Lcov;
Clone this wiki locally