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

Target.WithContext Module

Run functions which don't throw and return the context after all targets have been executed.

Functions and values

Function or value Description

run parallelJobs targetName args

Full Usage: run parallelJobs targetName args

Parameters:
    parallelJobs : int
    targetName : string
    args : string list

Returns: OptionalTargetContext

Runs a target and its dependencies and returns an OptionalTargetContext

parallelJobs : int
targetName : string
args : string list
Returns: OptionalTargetContext

runOrDefault defaultTarget

Full Usage: runOrDefault defaultTarget

Parameters:
    defaultTarget : string

Returns: OptionalTargetContext

Runs the command given on the command line or the given target when no target is given & get context

defaultTarget : string
Returns: OptionalTargetContext

runOrDefaultWithArguments defaultTarget

Full Usage: runOrDefaultWithArguments defaultTarget

Parameters:
    defaultTarget : string

Returns: OptionalTargetContext

Runs the command given on the command line or the given target when no target is given & get context

defaultTarget : string
Returns: OptionalTargetContext

runOrList ()

Full Usage: runOrList ()

Parameters:
    () : unit

Returns: OptionalTargetContext

Runs the target given by the target parameter or lists the available targets & get context

() : unit
Returns: OptionalTargetContext