Driver feature differences

March 25, 2026 ยท View on GitHub

All Coverlet drivers share the same coverage engine. Since version 3.0.0, we've consolidated versioning across drivers, so for every new release, all drivers will have the same version number.

We think that keeping the versions in sync better expresses the set of features every release will have. This does not mean that all drivers will support every functionality/feature or have the same behaviors, since they are limited by the context they're running in.

In the table below we keep track of main differences:

FeatureMSBuild.NET ToolVS DataCollectorMTP Extension
.NET Core support(>= 8.0)YesYesYesYes
.NET Framework support(>= 4.7.2)YesYesYes(since 3.0.0)No
Show result on consoleYesYesNoNo
Deterministic reports output folderYesYesNoNo
Merge reportsYesYesNoNo
Coverage threshold validationYesYesNoNo
Deterministic build supportYesNoYesNo

Tip

The new coverlet.MTP extension should be used for new test projects. This package supports the modern Microsoft Test Platform (see Microsoft.Testing.Platform and VSTest comparison)

Note

When possible, we advice you to use the collectors integration (VSTest engine integration), since it is fully integrated inside the test pipeline and does not suffer from the known issues of the other drivers.