7 references to LeavePropertiesUnexpandedOnError
Microsoft.Build (7)
BackEnd\Components\RequestBuilder\TargetEntry.cs (1)
378string expanded = _expander.ExpandIntoStringAndUnescape(_target.Condition, ExpanderOptions.ExpandPropertiesAndItems | ExpanderOptions.LeavePropertiesUnexpandedOnError | ExpanderOptions.Truncate, _target.ConditionLocation);
BackEnd\Components\RequestBuilder\TaskBuilder.cs (1)
615string expanded = bucket.Expander.ExpandIntoStringAndUnescape(_targetChildInstance.Condition, ExpanderOptions.ExpandAll | ExpanderOptions.LeavePropertiesUnexpandedOnError | ExpanderOptions.Truncate, _targetChildInstance.ConditionLocation);
Evaluation\Evaluator.cs (1)
1691string expanded = _expander.ExpandIntoStringAndUnescape(importElement.Condition, ExpanderOptions.ExpandProperties | ExpanderOptions.LeavePropertiesUnexpandedOnError | ExpanderOptions.Truncate, importElement.ConditionLocation);
Evaluation\Expander.cs (3)
1448catch (Exception) when (options.HasFlag(ExpanderOptions.LeavePropertiesUnexpandedOnError)) 3584if (options.HasFlag(ExpanderOptions.LeavePropertiesUnexpandedOnError)) 3655if (options.HasFlag(ExpanderOptions.LeavePropertiesUnexpandedOnError))
Evaluation\LazyItemEvaluator.cs (1)
633const ExpanderOptions expanderOptions = ExpanderOptions.ExpandProperties | ExpanderOptions.LeavePropertiesUnexpandedOnError;