Skip to content

Commit

Permalink
Some small tweaks (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow authored Apr 5, 2024
1 parent 5c14bf4 commit b94b0ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api-tools/ApiCompatCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public ApiCompatCommand()
protected override OptionSet OnCreateOptions() => new OptionSet
{
{ "s|search=", "A search path directory for the main assembly", v => SearchPaths.Add(v) },
{ "dependency-search=", "A search path directory for the dependency", v => DependencySearchPaths.Add(v) },
{ "dep-search=", "A search path directory for the dependency", v => DependencySearchPaths.Add(v) },
{ "o|output=", "The output file path", v => OutputPath = v },
};

Expand Down
3 changes: 1 addition & 2 deletions docs/api-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ Determine how compatible assemblies are.
Options:
-s, --search=VALUE A search path directory for the main assembly
--dependency-search=VALUE
A search path directory for the dependency
--dep-search=VALUE A search path directory for the dependency
-o, --output=VALUE The output file path
-?, -h, --help Show this message and exit
```
Expand Down

0 comments on commit b94b0ad

Please sign in to comment.