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
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,7 @@ static int Main(string[] args)
36
36
CommandOptionincludeDirectories=app.Option("--include-directory","Include directories containing additional assemblies to be instrumented.",CommandOptionType.MultipleValue);
37
37
CommandOptionexcludeAttributes=app.Option("--exclude-by-attribute","Attributes to exclude from code coverage.",CommandOptionType.MultipleValue);
38
38
CommandOptionmergeWith=app.Option("--merge-with","Path to existing coverage result to merge.",CommandOptionType.SingleValue);
39
+
CommandOptionuseSourceLink=app.Option("--use-source-link","Specifies whether to use SourceLink URIs in place of file system paths.",CommandOptionType.NoValue);
39
40
40
41
app.OnExecute(()=>
41
42
{
@@ -45,7 +46,7 @@ static int Main(string[] args)
45
46
if(!target.HasValue())
46
47
thrownewCommandParsingException(app,"Target must be specified.");
0 commit comments