Local (per-project): dotnet tool install --local JetBrains.dotCover.CommandLineTools
The tools are available as the JetBrains.dotCover.CommandLineTools package. dotcover command line tools download
JetBrains provide a flexible, cross-platform way to analyze code coverage without requiring a full Visual Studio or Rider installation. These tools are essential for integrating code coverage into automated workflows, such as CI/CD pipelines on platforms like TeamCity or GitHub Actions. How to Download and Install Local (per-project): dotnet tool install --local JetBrains
Global: dotnet tool install --global JetBrains.dotCover.CommandLineTools How to Download and Install Global: dotnet tool
This is the modern, cross-platform method. You can install it directly via the .NET CLI.
Windows users can install via Chocolatey using choco install dotcover-cli . Core Functionality & Commands
You can download the command-line tools as a standalone archive from the official JetBrains download page. This is useful for environments where the .NET SDK is restricted or for "portable" setups. Package Managers: