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

Command Type

The type of command to execute

Union cases

Union case Description

RawCommand(executable, arguments)

Full Usage: RawCommand(executable, arguments)

Parameters:

Windows: https://msdn.microsoft.com/en-us/library/windows/desktop/bb776391(v=vs.85).aspx Linux(mono): https://github.com/mono/mono/blob/0bcbe39b148bb498742fc68416f8293ccd350fb6/eglib/src/gshell.c#L32-L104 (because we need to create a commandline string internally which need to go through that code) Linux(netcore): See https://github.com/fsharp/FAKE/pull/1281/commits/285e585ec459ac7b89ca4897d1323c5a5b7e4558 and https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.Process/src/System/Diagnostics/Process.Unix.cs#L443-L522

executable : FilePath
arguments : Arguments

ShellCommand string

Full Usage: ShellCommand string

Parameters:
    Item : string

Item : string

Instance members

Instance member Description

this.Arguments

Full Usage: this.Arguments

Returns: Arguments
Returns: Arguments

this.CommandLine

Full Usage: this.CommandLine

Returns: string
Returns: string

this.Executable

Full Usage: this.Executable

Returns: FilePath
Returns: FilePath