2 implementations of IProperty
Microsoft.Build (2)
Definition\ProjectProperty.cs (1)
22public abstract class ProjectProperty : IKeyed, IValued, IProperty, IEquatable<ProjectProperty>
Instance\ProjectPropertyInstance.cs (1)
24public class ProjectPropertyInstance : IKeyed, IValued, IProperty, IEquatable<ProjectPropertyInstance>, ITranslatable
46 references to IProperty
Microsoft.Build (46)
BackEnd\BuildManager\BuildParameters.cs (2)
453instance => ((IProperty)instance).EvaluatedValueEscaped); 488instance => ((IProperty)instance).EvaluatedValueEscaped);
BackEnd\Components\RequestBuilder\Lookup.cs (1)
229lookupHash[propertyName] = ((IProperty)property).EvaluatedValueEscaped;
BackEnd\Shared\BuildRequestConfiguration.cs (2)
407_project.SetProperty(property.Name, ((IProperty)property).EvaluatedValueEscaped); 468globalProperties.Add(property.Name, ((IProperty)property).EvaluatedValueEscaped);
Construction\Solution\SolutionProjectGenerator.cs (2)
24using IProperty = Microsoft.Build.Evaluation.IProperty; 2092properties[globalProperty.Name] = ((IProperty)globalProperty).EvaluatedValueEscaped;
Definition\Project.cs (5)
1120return ((IProperty)property).EvaluatedValueEscaped; 2134yield return new KeyValuePair<string, string>(property.Name, ((IProperty)property).EvaluatedValueEscaped); 2161dictionary[property.Name] = ((IProperty)property).EvaluatedValueEscaped; 2985if (existing == null || ((IProperty)existing).EvaluatedValueEscaped != escapedValue) 2987string originalValue = (existing == null) ? String.Empty : ((IProperty)existing).EvaluatedValueEscaped;
Definition\ProjectCollection.cs (1)
605dictionary[property.Name] = ((IProperty)property).EvaluatedValueEscaped;
Definition\ProjectProperty.cs (3)
101string IProperty.EvaluatedValueEscaped 123string IProperty.GetEvaluatedValueEscaped(IElementLocation location) 586return ((IProperty)this).EvaluatedValueEscaped;
Evaluation\ConditionEvaluator.cs (3)
191where P : class, IProperty 225where P : class, IProperty 394where P : class, IProperty
Evaluation\Evaluator.cs (6)
56where P : class, IProperty, IEquatable<P>, IValued 1212_data.SetProperty(environmentProperty.Name, ((IProperty)environmentProperty).EvaluatedValueEscaped, isGlobalProperty: false, mayBeReserved: false, isEnvironmentVariable: true, loggingContext: _evaluationLoggingContext); 1223_data.SetProperty(toolsetProperty.Name, ((IProperty)toolsetProperty).EvaluatedValueEscaped, false /* NOT global property */, false /* may NOT be a reserved name */, loggingContext: _evaluationLoggingContext); 1249_data.SetProperty(subToolsetProperty.Name, ((IProperty)subToolsetProperty).EvaluatedValueEscaped, false /* NOT global property */, false /* may NOT be a reserved name */, loggingContext: _evaluationLoggingContext); 1269((IProperty)globalProperty).EvaluatedValueEscaped, 2198instance => ((IProperty)instance).EvaluatedValueEscaped),
Evaluation\Expander.cs (4)
140where P : class, IProperty 1212where T : class, IProperty 3643where T : class, IProperty 3711where T : class, IProperty
Evaluation\Expander\WellKnownFunctions.cs (1)
936where T : class, IProperty
Evaluation\IEvaluatorData.cs (1)
26where P : class, IProperty, IEquatable<P>, IValued
Evaluation\ItemSpec.cs (2)
20where P : class, IProperty 572where P : class, IProperty
Evaluation\LazyItemEvaluator.cs (1)
27where P : class, IProperty, IEquatable<P>, IValued
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
28where P : class, IProperty, IEquatable<P>, IValued
Instance\ProjectInstance.cs (3)
1740return ((IProperty)property).EvaluatedValueEscaped; 2634globalProperties[propertyInstance.Name] = ((IProperty)propertyInstance).EvaluatedValueEscaped; 3143((IProperty)property).EvaluatedValueEscaped,
Instance\ProjectPropertyInstance.cs (2)
98string IProperty.EvaluatedValueEscaped 114string IProperty.GetEvaluatedValueEscaped(IElementLocation location)
Instance\TaskRegistry.cs (5)
249where P : class, IProperty 283where P : class, IProperty 1677where P : class, IProperty 1703where P : class, IProperty 1739where P : class, IProperty
Utilities\Utilities.cs (1)
697if (item is IProperty property && !string.IsNullOrEmpty(property.Name))