This is part of the Fake.IO.FileSystem module.

OBSOLETE

use Fake.Core.Process and the ProcessUtils helpers instead.

Tools

Functions and values

Function or valueDescription
Tools.findToolFolderInSubPath(...)
Signature: toolname:string -> defaultPath:string -> string
Attributes:
[<Obsolete("use Fake.Core.Process and the ProcessUtils helpers instead. Example: `tryFindLocalTool "TOOL" "tool" [ "."; defaultPath ]`")>]
OBSOLETE

use Fake.Core.Process and the ProcessUtils helpers instead. Example: `tryFindLocalTool "TOOL" "tool" [ "."; defaultPath ]`

Looks for a tool in all subfolders - returns the folder where the tool was found.

Tools.findToolInSubPath(...)
Signature: toolname:string -> defaultPath:string -> string
Attributes:
[<Obsolete("use Fake.Core.Process and the ProcessUtils helpers instead. Example: `tryFindLocalTool "TOOL" "tool" [ "."; defaultPath ]`")>]
OBSOLETE

use Fake.Core.Process and the ProcessUtils helpers instead. Example: `tryFindLocalTool "TOOL" "tool" [ "."; defaultPath ]`

Looks for a tool first in its default path, if not found the in ./packages/ and then in all subfolders of the root folder - returns the tool file name.

Tools.tryFindToolFolderInSubPath(...)
Signature: toolname:string -> string option
Attributes:
[<Obsolete("use Fake.Core.Process and the ProcessUtils helpers instead. Example: `tryFindLocalTool "TOOL" "tool" [ "."; defaultPath ]`")>]
OBSOLETE

use Fake.Core.Process and the ProcessUtils helpers instead. Example: `tryFindLocalTool "TOOL" "tool" [ "."; defaultPath ]`

Looks for a tool in all subfolders - returns the folder where the tool was found or None if not found.