Represents an optional behavior that can be applied to a build definition.

interface BuildOptionDefinition {
    description?: string;
    groups?: BuildOptionGroupDefinition[];
    id: string;
    inputs?: BuildOptionInputDefinition[];
    name?: string;
    ordinal?: number;
}

Hierarchy (View Summary)

Properties

description?: string

The description.

The list of input groups defined for the build option.

id: string

The ID of the referenced build option.

The list of inputs defined for the build option.

name?: string

The name of the build option.

ordinal?: number

A value that indicates the relative order in which the behavior should be applied.