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

Arguments Type

Represents a list of arguments

Record fields

Record Field Description

Args

Full Usage: Args

Field type: string array
Field type: string array

Original

Full Usage: Original

Field type: string option
Field type: string option

Instance members

Instance member Description

this.ToLinuxShellCommandLine

Full Usage: this.ToLinuxShellCommandLine

Returns: string

Escape the given argument list according to a unix shell (bash)

Returns: string

this.ToStartInfo

Full Usage: this.ToStartInfo

Returns: string

Create a new command line string which can be used in a ProcessStartInfo object. If given, returns the exact input of `OfWindowsCommandLine` otherwise `ToWindowsCommandLine` (with some special code for `mono`) is used.

Returns: string

this.ToWindowsCommandLine

Full Usage: this.ToWindowsCommandLine

Returns: string

This is the reverse of https://msdn.microsoft.com/en-us/library/17w5ykft.aspx

Returns: string

Static members

Static member Description

Arguments.Empty

Full Usage: Arguments.Empty

Returns: Arguments
Returns: Arguments

Arguments.OfArgs(args)

Full Usage: Arguments.OfArgs(args)

Parameters:
    args : seq<string>

Returns: Arguments

Create a new arguments object from the given list of arguments

args : seq<string>
Returns: Arguments

Arguments.OfStartInfo(cmd)

Full Usage: Arguments.OfStartInfo(cmd)

Parameters:
    cmd : string

Returns: Arguments

Create a new arguments object from a given startinfo-conforming-escaped command line string. Same as `OfWindowsCommandLine`.

cmd : string
Returns: Arguments

Arguments.OfWindowsCommandLine(cmd)

Full Usage: Arguments.OfWindowsCommandLine(cmd)

Parameters:
    cmd : string

Returns: Arguments

See https://msdn.microsoft.com/en-us/library/17w5ykft.aspx

cmd : string
Returns: Arguments