Represents the application of an optional behavior to a build definition.

interface BuildOption {
    definition: BuildOptionDefinitionReference;
    enabled?: boolean;
    inputs?: { [key: string]: string };
}

Properties

A reference to the build option.

enabled?: boolean

Indicates whether the behavior is enabled.

inputs?: { [key: string]: string }