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
@@ -48,7 +48,7 @@ static int Main(string[] args)
48
48
varmergeWith=newOption<string>("--merge-with","Path to existing coverage result to merge."){Arity=ArgumentArity.ZeroOrOne};
49
49
varuseSourceLink=newOption<bool>("--use-source-link","Specifies whether to use SourceLink URIs in place of file system paths."){Arity=ArgumentArity.Zero};
50
50
vardoesNotReturnAttributes=newOption<string[]>("--does-not-return-attribute","Attributes that mark methods that do not return"){Arity=ArgumentArity.ZeroOrMore,AllowMultipleArgumentsPerToken=true};
51
-
varexcludeAssembliesWithoutSources=newOption<string>("--exclude-assemblies-without-sources","Specifies behavior of heuristic to ignore assemblies with missing source documents."){Arity=ArgumentArity.ZeroOrOne};
51
+
Option<string>excludeAssembliesWithoutSources=newOption<string>("--exclude-assemblies-without-sources","Specifies behavior of heuristic to ignore assemblies with missing source documents.").FromAmong("MissingAll","MissingAny","None");
52
52
varsourceMappingFile=newOption<string>("--source-mapping-file","Specifies the path to a SourceRootsMappings file."){Arity=ArgumentArity.ZeroOrOne};
0 commit comments