- Namespace
- Statiq
.Common - Interfaces
-
- IComparable
- IFormattable
- IConvertible
- Base Types
-
- object
- ValueType
- Enum
graph BT
Type-->Base0["Enum"]
Base0-->Base1["ValueType"]
Base1-->Base2["object"]
Type-.->Interface0["IComparable"]
Type-.->Interface1["IFormattable"]
Type-.->Interface2["IConvertible"]
Type["CleanMode"]
class Type type-node
Syntax
public enum CleanMode
Fields
Name | Field Type | Constant Value | Summary |
---|---|---|---|
Full | CleanMode | 2 |
Cleans the entire output folder before each execution.
static
|
None | CleanMode | 1 |
Does not clean the output folder before each execution.
static
|
Self | CleanMode | 0 |
Cleans the entire output folder before the initial execution,
then cleans only those files written or copied during the previous
execution before each following execution.
static
|
Unwritten | CleanMode | 3 |
Cleans files after each execution that were written or copied
during the previous execution but not during the current
execution. This mode also uses content hashing and file
attributes to avoid copying files when there's already a
duplicate file in the output folder.
static
|