14 references to ExpandIntoStringListLeaveEscaped
Microsoft.Build (13)
BackEnd\Components\RequestBuilder\IntrinsicTasks\ItemGroupIntrinsicTask.cs (4)
86
var keepMetadataEvaluated = bucket.Expander.
ExpandIntoStringListLeaveEscaped
(child.KeepMetadata, ExpanderOptions.ExpandAll, child.KeepMetadataLocation).ToList();
95
var removeMetadataEvaluated = bucket.Expander.
ExpandIntoStringListLeaveEscaped
(child.RemoveMetadata, ExpanderOptions.ExpandAll, child.RemoveMetadataLocation).ToList();
104
var matchOnMetadataEvaluated = bucket.Expander.
ExpandIntoStringListLeaveEscaped
(child.MatchOnMetadata, ExpanderOptions.ExpandAll, child.MatchOnMetadataLocation).ToList();
562
var specificationPieces = expander.
ExpandIntoStringListLeaveEscaped
(specification, ExpanderOptions.ExpandAll, specificationLocation);
BackEnd\Components\RequestBuilder\TargetEntry.cs (2)
404
var dependencies = _expander.
ExpandIntoStringListLeaveEscaped
(_target.DependsOnTargets, ExpanderOptions.ExpandPropertiesAndItems, _target.DependsOnTargetsLocation);
718
var errorTargets = _expander.
ExpandIntoStringListLeaveEscaped
(errorTargetInstance.ExecuteTargets, ExpanderOptions.ExpandPropertiesAndItems, errorTargetInstance.ExecuteTargetsLocation);
BackEnd\Components\RequestBuilder\TargetUpToDateChecker.cs (2)
412
var targetInputs = bucket.Expander.
ExpandIntoStringListLeaveEscaped
(TargetInputSpecification, ExpanderOptions.ExpandPropertiesAndMetadata, _targetToAnalyze.InputsLocation);
413
var targetOutputs = bucket.Expander.
ExpandIntoStringListLeaveEscaped
(TargetOutputSpecification, ExpanderOptions.ExpandPropertiesAndMetadata, _targetToAnalyze.OutputsLocation);
BackEnd\Components\RequestBuilder\TaskBuilder.cs (1)
1190
var outputItemSpecs = bucket.Expander.
ExpandIntoStringListLeaveEscaped
(taskParameterAttribute, ExpanderOptions.ExpandPropertiesAndMetadata, taskItemInstance.TaskParameterLocation);
Evaluation\Evaluator.cs (4)
865
var initialTargets = _expander.
ExpandIntoStringListLeaveEscaped
(currentProjectOrImport.InitialTargets, ExpanderOptions.ExpandProperties, currentProjectOrImport.InitialTargetsLocation);
870
foreach (string propertyName in _expander.
ExpandIntoStringListLeaveEscaped
(currentProjectOrImport.TreatAsLocalProperty, ExpanderOptions.ExpandProperties, currentProjectOrImport.TreatAsLocalPropertyLocation))
1056
var beforeTargets = _expander.
ExpandIntoStringListLeaveEscaped
(targetElement.BeforeTargets, ExpanderOptions.ExpandPropertiesAndItems, targetElement.BeforeTargetsLocation);
1057
var afterTargets = _expander.
ExpandIntoStringListLeaveEscaped
(targetElement.AfterTargets, ExpanderOptions.ExpandPropertiesAndItems, targetElement.AfterTargetsLocation);
Microsoft.Build.Engine.UnitTests (1)
Evaluation\Expander_Tests.cs (1)
1691
IList<string> expanded = expander.
ExpandIntoStringListLeaveEscaped
(value, ExpanderOptions.ExpandAll, MockElementLocation.Instance).ToList();