We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae8dacb commit ae06df9Copy full SHA for ae06df9
README.md
@@ -37,3 +37,21 @@ Example:
37
````
38
metricsextractor.exe -solution solutionpath.sln -ignoredprojects "Project.Core.Tests;Project.Data.Tests;Project.Web.Tests"
39
40
+
41
+#### IgnoredNamespaces
42
+You can list namespaces in your application that you want to ignore, you must split them by "**;**"
43
44
+Example:
45
46
+````
47
+metricsextractor.exe -solution solutionpath.sln -ignorednamespaces "Namespace.Core.Tests;Namespace.Data.Migrations"
48
49
50
+#### IgnoredTypes
51
+You can list types in your application that you want to ignore, you must split them by "**;**"
52
53
54
55
56
+metricsextractor.exe -solution solutionpath.sln -ignoredtypes "Namespace.Core.Person;Namespace.Data.UnitOfWork"
57
0 commit comments