Note: This is the migration API reference for FAKE 5. The new (modularized) API documentation can be found here. If the API is already migrated you can check here if exists in a module. More information regarding the migration can be found here

OBSOLETE

Fake.Boot is no longer supported

Boot

Implements support for boostrapping FAKE scripts. A bootstrapping build.fsx script executes twice (in two stages), allowing to download dependencies with NuGet and do other preparatory work in the first stage, and have these dependencies available in the second stage.

Nested types and modules

TypeDescription
CommandEnvironment
OBSOLETE

Fake.Boot is no longer supported

Abstracts over command-line environment features.

CommandHandler
OBSOLETE

Fake.Boot is no longer supported

Represents a command line handler.

Config
OBSOLETE

Fake.Boot is no longer supported

Configures the boostrapping process.

NuGetDependency
OBSOLETE

Fake.Boot is no longer supported

Specifies NuGet package dependencies.

NuGetVersion
OBSOLETE

Fake.Boot is no longer supported

Specifies which version of the NuGet package to install.

Stage
OBSOLETE

Fake.Boot is no longer supported

Stage of execution for a boot system.

Functions and values

Function or valueDescription
HandlerForArgs(args)
Signature: args:string list -> CommandHandler
Attributes:
[<Obsolete("Fake.Boot is no longer supported")>]
OBSOLETE

Fake.Boot is no longer supported

Creates the CommandHandler from the

ParseCommandLine(args)
Signature: args:seq<string> -> CommandHandler option
Attributes:
[<Obsolete("Fake.Boot is no longer supported")>]
OBSOLETE

Fake.Boot is no longer supported

Detects boot-specific commands.

Prepare(config)
Signature: config:Config -> unit
Attributes:
[<Obsolete("Fake.Boot is no longer supported")>]
OBSOLETE

Fake.Boot is no longer supported

The main function intended to be executed in the BOOT phase of boostrapping scripts.