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

Pickles Module

Contains tasks to run the Pickles living documentation generator

Example


 open Fake.Tools

 Target.create "BuildDoc" (fun _ ->
    Pickles.convert (fun p ->
        { p with FeatureDirectory = currentDirectory </> "Specs"
                 OutputDirectory = currentDirectory </> "SpecDocs"
                 OutputFileFormat = Pickles.DocumentationFormat.DHTML })
 )

Types

Type Description

DocumentationFormat

The output documentation format

ErrorLevel

Option which allows to specify if failure of pickles should break the build.

PicklesParams

The Pickles parameter type

TestResultsFormat

The format of the test results

Functions and values

Function or value Description

Pickles.convert setParams

Full Usage: Pickles.convert setParams

Parameters:

Runs pickles living documentation generator via the given tool Will fail if the pickles command line tool terminates with a non zero exit code.

The pickles command line tool terminates with a non-zero exit code if there is any error.

setParams : PicklesParams -> PicklesParams

Function used to manipulate the default PicklesParams value