This is part of the Fake.IO.FileSystem module.
								
                
							
  
    
    OBSOLETE
    use Fake.Core.Process and the ProcessUtils helpers instead.
      
  
  
  
    
      | Function or value | Description | 
    
    
      
        | 
            Tools.findToolFolderInSubPath(...)
          
            Signature: toolname:string -> defaultPath:string -> stringAttributes:
 [<Obsolete("use Fake.Core.Process and the ProcessUtils helpers instead. Example: `tryFindLocalTool "TOOL" "tool" [ "."; defaultPath ]`")>]
 
 | 
                OBSOLETEuse 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 -> stringAttributes:
 [<Obsolete("use Fake.Core.Process and the ProcessUtils helpers instead. Example: `tryFindLocalTool "TOOL" "tool" [ "."; defaultPath ]`")>]
 
 | 
                OBSOLETEuse 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 optionAttributes:
 [<Obsolete("use Fake.Core.Process and the ProcessUtils helpers instead. Example: `tryFindLocalTool "TOOL" "tool" [ "."; defaultPath ]`")>]
 
 | 
                OBSOLETEuse 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. |