You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coverlet goes a step in the other direction by also letting you explicitly set what can be included using the `--include` option.
212
212
213
213
Examples
214
-
- `--include "[*]*"` => INcludes all types in all assemblies (nothing is instrumented)
214
+
- `--include "[*]*"` => Includes all types in all assemblies (everything is instrumented)
215
215
- `--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`)
216
216
- `--include "[coverlet.*.tests?]*"` => Includes all types in any assembly starting with `coverlet.` and ending with `.test` or `.tests` (the `?` makes the `s` optional)
0 commit comments