BuildUtility class

Helper methods for build scripts.

public static class BuildUtility

Public Members

name description
static CopyFiles(…) Copies the files matching the specified globs from one directory to another, creating subdirectories and overwriting existing files as needed.
static CopyFilesExcept(…) Copies all files except those matching the specified globs from one directory to another, creating subdirectories and overwriting existing files as needed.
static DeleteDirectory(…) Recursively deletes the specified directory.
static FindDirectories(…) Finds the directories matching the specified globs, from the current working directory.
static FindDirectoriesFrom(…) Finds the directories matching the specified globs.
static FindFiles(…) Finds the files matching the specified globs, from the current working directory.
static FindFilesFrom(…) Finds the files matching the specified globs.

Remarks

See https://github.com/kthompson/glob for documentation on globs.

Consider calling these methods directly via using static Faithlife.Build.BuildUtility;.

See Also