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
Copy file name to clipboardExpand all lines: src/coverlet.console/Program.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ static int Main(string[] args)
40
40
varincludeFilters=newOption<string[]>("--include","Filter expressions to include only specific modules and types."){Arity=ArgumentArity.ZeroOrMore};
41
41
varexcludedSourceFiles=newOption<string[]>("--exclude-by-file","Glob patterns specifying source files to exclude."){Arity=ArgumentArity.ZeroOrMore};
42
42
varincludeDirectories=newOption<string[]>("--include-directory","Include directories containing additional assemblies to be instrumented."){Arity=ArgumentArity.ZeroOrMore};
43
-
varexcludeAttributes=newOption<string[]>("--exclude-by-attribute","Attributes to exclude from code coverage."){Arity=ArgumentArity.ZeroOrOne};
43
+
varexcludeAttributes=newOption<string[]>("--exclude-by-attribute","Attributes to exclude from code coverage."){Arity=ArgumentArity.ZeroOrMore};
44
44
varincludeTestAssembly=newOption<bool>("--include-test-assembly","Specifies whether to report code coverage of the test assembly."){Arity=ArgumentArity.Zero};
45
45
varsingleHit=newOption<bool>("--single-hit","Specifies whether to limit code coverage hit reporting to a single hit for each location"){Arity=ArgumentArity.Zero};
46
46
varskipAutoProp=newOption<bool>("--skipautoprops","Neither track nor record auto-implemented properties."){Arity=ArgumentArity.Zero};
0 commit comments