ExecutionSettings.

UseUnifiedDependencyGraphForMultipleTargets(bool) Method

Summary

When running multiple targets, use a unified dependency graph so that shared dependencies run only once. When not set, each target is executed in isolation and common dependencies may run multiple times.
Namespace
Cake.Core
Containing Type
ExecutionSettings

Syntax

public ExecutionSettings UseUnifiedDependencyGraphForMultipleTargets(bool value = true)

Parameters

Name Type Description
value bool Whether to use the unified dependency graph; default is true.

Return Value

Type Description
ExecutionSettings The same ExecutionSettings instance so that multiple calls can be chained.