Note: This is the migration API reference for FAKE 5. The new (modularized) API documentation can be found
here.
If the API is already migrated you can check here if exists in a module.
More information regarding the migration can be found here
StreamSpecification
Various options to redirect streams.
Union Cases
Union Case | Description |
CreatePipe(StreamRef)
Signature: StreamRef
|
Retrieve the raw pipe from the process (the StreamRef is set with a stream you can write into for 'stdin' and read from for 'stdout' and 'stderr') |
Inherit
Signature:
|
Do not redirect, or use normal process inheritance |
UseStream(closeOnExit,stream)
Signature: bool * Stream
|
Redirect to the given stream (the stream must be provided by the user and be writeable for 'stdout' & 'stderr' and readable for 'stdin') |