diff --git a/Faithlife.Build/BuildApp.md b/Faithlife.Build/BuildApp.md index efa8654..83ed830 100644 --- a/Faithlife.Build/BuildApp.md +++ b/Faithlife.Build/BuildApp.md @@ -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 diff --git a/Faithlife.Build/BuildApp/CommandLineParsed.md b/Faithlife.Build/BuildApp/CommandLineParsed.md new file mode 100644 index 0000000..63c221e --- /dev/null +++ b/Faithlife.Build/BuildApp/CommandLineParsed.md @@ -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) + +