FAKE - F# Make - A DSL for build tasks and more FAKE
6.0.0

Lookig for older versions of the documentation, pre FAKE v6? See 

v5.fake.build

StreamSpecification Type

Various options to redirect streams.

Union cases

Union case Description

CreatePipe StreamRef

Full Usage: CreatePipe StreamRef

Parameters:

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')

Item : StreamRef

Inherit

Full Usage: Inherit

Do not redirect, or use normal process inheritance

UseStream(closeOnExit, stream)

Full Usage: UseStream(closeOnExit, stream)

Parameters:
    closeOnExit : bool
    stream : Stream

Redirect to the given stream (the stream must be provided by the user and be writeable for 'stdout' & 'stderr' and readable for 'stdin')

closeOnExit : bool
stream : Stream