This is part of the Fake.Core.DependencyManager.Paket module.

ResolveDependenciesResult

returned structure from the ResolveDependencies method call.

Constructors

ConstructorDescription
new(...)
Signature: (success:bool * stdOut:string array * stdError:string array * resolutions:seq<string> * sourceFiles:seq<string> * roots:seq<string>) -> ResolveDependenciesResult

Instance members

Instance memberDescription
x.Resolutions
Signature: seq<string>

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

x.Roots
Signature: seq<string>

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

x.SourceFiles
Signature: seq<string>

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

x.StdError
Signature: string array

The resolution error log ( process stderror )

x.StdOut
Signature: string array

The resolution output log

x.Success
Signature: bool

Succeded?