FAKE - F# Make


FSIHelper

Contains helper functions which allow to interact with the F# Interactive.

Nested types and modules

TypeDescription
FsiArgs

Functions and values

Function or valueDescription
executeBuildScriptWithArgsAndReturnMessages (...)
Signature: workingDirectory:'?8251 -> script:string -> scriptArgs:string [] -> bool * ConsoleMessage list
Type parameters: '?8251

Run the given buildscript with fsi.exe and allows for extra arguments to the script. Returns output.

executeFSI workingDirectory script args
Signature: workingDirectory:string -> script:string -> args:seq<string * string> -> bool * seq<ConsoleMessage>

Run the given buildscript with fsi.exe

executeFSIWithArgs (...)
Signature: workingDirectory:string -> script:string -> extraFsiArgs:string list -> args:seq<string * string> -> bool

Run the given build script with fsi.exe and allows for extra arguments to FSI.

executeFSIWithScriptArgsAndReturnMessages (...)
Signature: workingDirectory:'?8247 -> script:string -> scriptArgs:string [] -> bool * seq<ConsoleMessage>
Type parameters: '?8247

Run the given build script with fsi.exe and allows for extra arguments to the script. Returns output.

fsiPath
Signature: string

The path to the F# Interactive tool.

fsiStartInfo (...)
Signature: script:string -> workingDirectory:string -> args:seq<string * string> -> info:ProcessStartInfo -> unit

Creates a ProcessStartInfo which is configured to the F# Interactive.

runBuildScript (...)
Signature: printDetails:bool -> script:string -> extraFsiArgs:string list -> args:seq<string * string> -> bool

Run the given buildscript with fsi.exe

runBuildScriptAt (...)
Signature: workingDirectory:'?8255 -> printDetails:bool -> script:string -> extraFsiArgs:string list -> args:seq<string * string> -> bool
Type parameters: '?8255

Run the given buildscript with fsi.exe at the given working directory.

runBuildScriptWithFsiArgsAt (...)
Signature: workingDirectory:'?8253 -> printDetails:bool -> FsiArgs -> args:seq<string * string> -> bool
Type parameters: '?8253

Run the given buildscript with fsi.exe at the given working directory. Provides full access to Fsi options and args.

Fork me on GitHub