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

InnoSetup Module

This module contains helper functions to create Inno Setup installers.

Types

Type Description

InnoSetupParams

InnoSetup build parameters

QuietMode

Output verbosity

Functions and values

Function or value Description

InnoSetup.build setParams

Full Usage: InnoSetup.build setParams

Parameters:

Builds the InnoSetup installer.

setParams : InnoSetupParams -> InnoSetupParams

Function used to manipulate the default build parameters. See InnoSetupParams.Create()

Example


 InnoSetup.build (fun p ->
         { p with
             OutputFolder = "build" @@ "installer"
             ScriptFile = "installer" @@ "setup.iss"
         })