Skip to content

Commit

Permalink
Documentation updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
faithlifebuildbot committed May 31, 2024
1 parent 5d4dd09 commit c61e6c4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions Faithlife.Build/BuildApp.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public sealed class BuildApp
| [Targets](BuildApp/Targets.md) { get; } | The targets previously added to the build via [`Target`](./BuildApp/Target.md). |
| [AddFlag](BuildApp/AddFlag.md)(…) | Adds support for a no-value command-line flag. |
| [AddOption](BuildApp/AddOption.md)(…) | Adds support for a single-value command-line option. |
| [CommandLineParsed](BuildApp/CommandLineParsed.md)(…) | Adds an action to execute when the command line arguments have been parsed, but before the target(s) are evaluated and executed. |
| [Target](BuildApp/Target.md)(…) | Creates a build target. |

## See Also
Expand Down
18 changes: 18 additions & 0 deletions Faithlife.Build/BuildApp/CommandLineParsed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# BuildApp.CommandLineParsed method

Adds an action to execute when the command line arguments have been parsed, but before the target(s) are evaluated and executed.

```csharp
public void CommandLineParsed(Action action)
```

| parameter | description |
| --- | --- |
| action | The action to execute when the command line arguments have been parsed. |

## See Also

* class [BuildApp](../BuildApp.md)
* namespace [Faithlife.Build](../../Faithlife.Build.md)

<!-- DO NOT EDIT: generated by xmldocmd for Faithlife.Build.dll -->

0 comments on commit c61e6c4

Please sign in to comment.