1 write to Expander
Microsoft.Build (1)
Definition\Project.cs (1)
4272
Expander
= new Expander<ProjectProperty, ProjectItem>(Properties, Items, evaluationContext, loggingContext);
13 references to Expander
Microsoft.Build (13)
Definition\Project.cs (13)
2619
var includeItemspec = new EvaluationItemSpec(itemElement.Include, _data.
Expander
, itemElement.IncludeLocation, itemElement.ContainingProject.DirectoryPath);
2635
var excludeItemspec = new EvaluationItemSpec(itemElement.Exclude, _data.
Expander
, itemElement.ExcludeLocation, itemElement.ContainingProject.DirectoryPath);
2675
var removeSpec = new EvaluationItemSpec(itemElement.Remove, _data.
Expander
, itemElement.RemoveLocation, itemElement.ContainingProject.DirectoryPath);
2798
EvaluationItemSpec expandedItemSpec = new EvaluationItemSpec(itemSpec, _data.
Expander
, elementLocation, itemElement.ContainingProject.DirectoryPath, expandProperties: true);
3262
string result = _data.
Expander
.ExpandIntoStringAndUnescape(unexpandedValue, ExpanderOptions.ExpandPropertiesAndItems, ProjectFileLocation);
3449
string evaluatedExistingInclude = _data.
Expander
.ExpandIntoStringLeaveEscaped(candidateExistingItemXml.Include, ExpanderOptions.ExpandProperties, candidateExistingItemXml.IncludeLocation);
3503
string evaluatedValueEscaped = _data.
Expander
.ExpandIntoStringLeaveEscaped(unevaluatedValue, ExpanderOptions.ExpandProperties, propertyLocation);
3533
_data.
Expander
,
3557
ErrorUtilities.VerifyThrow(_data.
Expander
.Metadata == null, "Should be null");
3559
_data.
Expander
.Metadata = metadataTable;
3560
string evaluatedValueEscaped = _data.
Expander
.ExpandIntoStringLeaveEscaped(unevaluatedValue, ExpanderOptions.ExpandAll, metadataLocation);
3561
_data.
Expander
.Metadata = null;
3600
_data.
Expander
,