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

ResolveDependenciesResult Type

returned structure from the ResolveDependencies method call.

Constructors

Constructor Description

ResolveDependenciesResult(success, stdOut, stdError, resolutions, sourceFiles, roots)

Full Usage: ResolveDependenciesResult(success, stdOut, stdError, resolutions, sourceFiles, roots)

Parameters:
    success : bool
    stdOut : string array
    stdError : string array
    resolutions : seq<string>
    sourceFiles : seq<string>
    roots : seq<string>

Returns: ResolveDependenciesResult
success : bool
stdOut : string array
stdError : string array
resolutions : seq<string>
sourceFiles : seq<string>
roots : seq<string>
Returns: ResolveDependenciesResult

Instance members

Instance member Description

this.Resolutions

Full Usage: this.Resolutions

Returns: seq<string>

The resolution paths (will be treated as #r options)

Returns: seq<string>

this.Roots

Full Usage: this.Roots

Returns: seq<string>

The roots to package directories (will be treated like #I options)

Returns: seq<string>

this.SourceFiles

Full Usage: this.SourceFiles

Returns: seq<string>

The source code file paths (will be treated as #load options)

Returns: seq<string>

this.StdError

Full Usage: this.StdError

Returns: string array

The resolution error log (* process stderror *)

Returns: string array

this.StdOut

Full Usage: this.StdOut

Returns: string array

The resolution output log

Returns: string array

this.Success

Full Usage: this.Success

Returns: bool

Succeeded?

Returns: bool