From 242db90a3715131fcbbc22ed71d1c478e8b4b032 Mon Sep 17 00:00:00 2001 From: Marco Rossignoli Date: Mon, 15 Oct 2018 14:18:12 +0200 Subject: [PATCH] fix guide --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index faae7fa..5553f0d 100644 --- a/README.md +++ b/README.md @@ -314,7 +314,7 @@ dotnet test /p:CollectCoverage=true /p:Exclude="[coverlet.*]Coverlet.Core.Covera Coverlet goes a step in the other direction by also letting you explicitly set what can be included using the `Include` property. Examples - - `/p:Include="[*]*"` => INcludes all types in all assemblies (nothing is instrumented) + - `/p:Include="[*]*"` => Includes all types in all assemblies (everything is instrumented) - `/p:Include="[coverlet.*]Coverlet.Core.Coverage"` => Includes the Coverage class in the `Coverlet.Core` namespace belonging to any assembly that matches `coverlet.*` (e.g `coverlet.core`) - `/p:Include="[coverlet.*.tests?]*"` => Includes all types in any assembly starting with `coverlet.` and ending with `.test` or `.tests` (the `?` makes the `s` optional)