Skip to content

Commit

Permalink
Documentation updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
faithlifebuildbot committed Sep 24, 2024
1 parent 13eb6b2 commit b114983
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions Faithlife.Build/AppRunnerSettings.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public sealed class AppRunnerSettings
| [EnvironmentVariables](AppRunnerSettings/EnvironmentVariables.md) { get; } | Additional environment variables to set when running the app. |
| [HandleErrorLine](AppRunnerSettings/HandleErrorLine.md) { getset; } | If set, each line of standard error is sent to the delegate, not to the console. |
| [HandleOutputLine](AppRunnerSettings/HandleOutputLine.md) { getset; } | If set, each line of standard output is sent to the delegate, not to the console. |
| [InputStream](AppRunnerSettings/InputStream.md) { getset; } | If set, redirects standard in and uses this stream as input. |
| [IsExitCodeSuccess](AppRunnerSettings/IsExitCodeSuccess.md) { getset; } | Called to determine if the exit code is successful; it if isn't, an exception is thrown. |
| [IsFrameworkApp](AppRunnerSettings/IsFrameworkApp.md) { getset; } | True if Mono is used to run the app on Linux and macOS. |
| [NoEcho](AppRunnerSettings/NoEcho.md) { getset; } | True if the process information should not be written to standard error. |
Expand Down
14 changes: 14 additions & 0 deletions Faithlife.Build/AppRunnerSettings/InputStream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# AppRunnerSettings.InputStream property

If set, redirects standard in and uses this stream as input.

```csharp
public Stream? InputStream { get; set; }
```

## See Also

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

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

0 comments on commit b114983

Please sign in to comment.