Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/core/additional-tools/dotnet-coverage.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
title: dotnet-coverage code coverage tool - .NET CLI
description: Learn how to install and use the dotnet-coverage CLI tool to collect code coverage data of a running process.
ms.date: 10/21/2021
ms.date: 08/05/2026
ms.topic: reference
ai-usage: ai-assisted
---
# dotnet-coverage code coverage utility

Expand Down Expand Up @@ -796,6 +797,10 @@ You can use the `merge` command to convert a code coverage report to another for
dotnet-coverage merge -o output.xml -f xml input.coverage
```

## Telemetry

Starting with version 18.10.0, the `dotnet-coverage` tool collects telemetry data to help Microsoft improve the code coverage tools. The data records which commands you run and which options you set when you run the tool. You can disable telemetry at any time. For more information about the data that's collected and how to opt out, see [Microsoft.CodeCoverage.Console telemetry](/visualstudio/test/microsoft-code-coverage-console-tool-telemetry).

## See also

* [Customize code coverage analysis](/visualstudio/test/customizing-code-coverage-analysis)
Expand Down
Loading