Skip to content

Commit

Permalink
Tidy docs
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveGilham committed Jan 28, 2022
1 parent 02f801f commit f849eeb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ public interface IPrepareOptions
| [MethodFilter](Abstract.IPrepareOptions/MethodFilter-apidoc) { get; } | Corresponds to command line option ` -m, --methodFilter=VALUE` |
| [MethodPoint](Abstract.IPrepareOptions/MethodPoint-apidoc) { get; } | Corresponds to command line option `--methodpoint` |
| [MethodTopLevel](Abstract.IPrepareOptions/MethodTopLevel-apidoc) { get; } | Corresponds to command line option `--methodtoplevel=VALUE` |

| name | description |
| --- | --- |
| [OutputDirectories](Abstract.IPrepareOptions/OutputDirectories-apidoc) { get; } | Corresponds to command line option `-o, --outputDirectory=VALUE` |
| [PathFilter](Abstract.IPrepareOptions/PathFilter-apidoc) { get; } | Corresponds to command line option `-p, --pathFilter=VALUE` |
| [Report](Abstract.IPrepareOptions/Report-apidoc) { get; } | Corresponds to command line option `-r, --report=VALUE` |
Expand Down
4 changes: 2 additions & 2 deletions docs/Fake-and-Cake-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Implement the needed interfaces e.g. by copying and pasting this for the minimal
public IEnumerable<string> AttributeTopLevel => Array.Empty<string>();
public IEnumerable<string> TypeTopLevel => Array.Empty<string>();
public IEnumerable<string> MethodTopLevel => Array.Empty<string>();
public IEnumerable<string> CallContext => new string[] {"[Fact]", "0"};
public IEnumerable<string> CallContext => Array.Empty<string>();
public string ReportFormat => String.Empty;
public bool InPlace => false;
public bool Save => false;
Expand All @@ -89,7 +89,7 @@ Implement the needed interfaces e.g. by copying and pasting this for the minimal
public IEnumerable<string> CommandLine => throw new NotImplementedException("CommandLine not used");
public bool ExposeReturnCode => throw new NotImplementedException("ExposeReturnCode not used");
public bool SourceLink => true;
public bool Defer => true;
public bool Defer => throw new NotImplementedException("Defer not used");
public bool LocalSource => true;
public bool VisibleBranches => false;
public string ShowStatic => String.Empty;
Expand Down

0 comments on commit f849eeb

Please sign in to comment.