7 references to ExpandIntoTaskItemsLeaveEscaped
Microsoft.Build (7)
BackEnd\Components\RequestBuilder\TargetEntry.cs (4)
638
targetOutputItemsList = bucket.Expander.
ExpandIntoTaskItemsLeaveEscaped
(targetReturns, ExpanderOptions.ExpandAll, targetReturnsLocation).ToList();
642
targetOutputItemsList.AddRange(bucket.Expander.
ExpandIntoTaskItemsLeaveEscaped
(targetReturns, ExpanderOptions.ExpandAll, targetReturnsLocation));
653
targetOutputItems = new HashSet<TaskItem>(batchingBuckets[0].Expander.
ExpandIntoTaskItemsLeaveEscaped
(targetReturns, ExpanderOptions.ExpandAll, targetReturnsLocation)).ToArray();
660
IList<TaskItem> itemsToAdd = bucket.Expander.
ExpandIntoTaskItemsLeaveEscaped
(targetReturns, ExpanderOptions.ExpandAll, targetReturnsLocation);
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (2)
1246
IList<TaskItem> finalTaskItems = _batchBucket.Expander.
ExpandIntoTaskItemsLeaveEscaped
(parameterValue, ExpanderOptions.ExpandAll, parameterLocation);
1369
IList<TaskItem> finalTaskItems = _batchBucket.Expander.
ExpandIntoTaskItemsLeaveEscaped
(parameterValue, ExpanderOptions.ExpandAll, parameterLocation);
Evaluation\ConditionEvaluator.cs (1)
470
var items = _expander.
ExpandIntoTaskItemsLeaveEscaped
(expression, _expanderOptions, ElementLocation);