4 implementations of GlobalPropertiesToTreatAsLocal
Microsoft.Build (4)
Definition\Project.cs (1)
4071
public ISet<string>
GlobalPropertiesToTreatAsLocal
=> _globalPropertiesToTreatAsLocal ?? (_globalPropertiesToTreatAsLocal =
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
141
public ISet<string>
GlobalPropertiesToTreatAsLocal
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
138
public ISet<string>
GlobalPropertiesToTreatAsLocal
=> _wrapped.GlobalPropertiesToTreatAsLocal;
Instance\ProjectInstance.cs (1)
1348
ISet<string> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.
GlobalPropertiesToTreatAsLocal
6 references to GlobalPropertiesToTreatAsLocal
Microsoft.Build (4)
Evaluation\Evaluator.cs (2)
873
_data.
GlobalPropertiesToTreatAsLocal
.Add(propertyName);
1284
!_data.
GlobalPropertiesToTreatAsLocal
.Contains(propertyElement.Name))
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
145
return _wrappedData.
GlobalPropertiesToTreatAsLocal
;
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
138
public ISet<string> GlobalPropertiesToTreatAsLocal => _wrapped.
GlobalPropertiesToTreatAsLocal
;
Microsoft.Build.Engine.UnitTests (2)
TestComparers\ProjectInstanceModelTestComparers.cs (2)
30
Assert.Equal(((EvaluatorData)x).
GlobalPropertiesToTreatAsLocal
, ((EvaluatorData)y).
GlobalPropertiesToTreatAsLocal
);