Note: This API documentation is for FAKE version 4. The migration API documentation can be found
here. The API documentation for the new fake 5 modules can be found
here
FileIncludes
Internal representation of a file set.
Record Fields
Record Field | Description |
BaseDirectory
Signature: string
|
|
Excludes
Signature: string list
|
|
Includes
Signature: string list
|
Instance members
Instance member | Description |
x.And(pattern)
Signature: pattern:string -> FileIncludes
|
Adds the given pattern to the file includes |
x.ButNot(pattern)
Signature: pattern:string -> FileIncludes
|
Ignores files with the given pattern |
x.IsMatch(path)
Signature: path:string -> bool
|
Checks if a particular file is matched |
x.SetBaseDirectory(dir)
Signature: dir:string -> FileIncludes
|
Sets a directory as BaseDirectory. |