FsMake


MakeError Type

The types of errors that can occur while running a step.

Union cases

Union case Description

MakeAbort message

Full Usage: MakeAbort message

Parameters:
    message : Message list - A list of message that should be printed to the console.

The make was aborted, most likely by the CancellationToken in the MakeContext being cancelled.

message : Message list

A list of message that should be printed to the console.

MakeError message

Full Usage: MakeError message

Parameters:
    message : Message list - A list of message that should be printed to the console.

Any error that is not an exception.

message : Message list

A list of message that should be printed to the console.

MakeUnhandledEx ex

Full Usage: MakeUnhandledEx ex

Parameters:
    ex : exn

An unhandled exception occurred while running the Make.

ex : exn