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
47 references to IProperty
Microsoft.Build (47)
BackEnd\BuildManager\BuildParameters.cs (2)
439instance => ((IProperty)instance).EvaluatedValueEscaped); 474instance => ((IProperty)instance).EvaluatedValueEscaped);
BackEnd\Components\RequestBuilder\Lookup.cs (1)
226lookupHash[propertyName] = ((IProperty)property).EvaluatedValueEscaped;
BackEnd\Shared\BuildRequestConfiguration.cs (2)
401_project.SetProperty(property.Name, ((IProperty)property).EvaluatedValueEscaped); 462globalProperties.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; 2971if (existing == null || ((IProperty)existing).EvaluatedValueEscaped != escapedValue) 2973string originalValue = (existing == null) ? String.Empty : ((IProperty)existing).EvaluatedValueEscaped;
Definition\ProjectCollection.cs (1)
578dictionary[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 386where P : class, IProperty
Evaluation\Evaluator.cs (6)
56where P : class, IProperty, IEquatable<P>, IValued 1207_data.SetProperty(environmentProperty.Name, ((IProperty)environmentProperty).EvaluatedValueEscaped, isGlobalProperty: false, mayBeReserved: false, isEnvironmentVariable: true, loggingContext: _evaluationLoggingContext); 1218_data.SetProperty(toolsetProperty.Name, ((IProperty)toolsetProperty).EvaluatedValueEscaped, false /* NOT global property */, false /* may NOT be a reserved name */, loggingContext: _evaluationLoggingContext); 1244_data.SetProperty(subToolsetProperty.Name, ((IProperty)subToolsetProperty).EvaluatedValueEscaped, false /* NOT global property */, false /* may NOT be a reserved name */, loggingContext: _evaluationLoggingContext); 1264((IProperty)globalProperty).EvaluatedValueEscaped, 2164instance => ((IProperty)instance).EvaluatedValueEscaped),
Evaluation\Expander.cs (4)
135where P : class, IProperty 1130where T : class, IProperty 3173where T : class, IProperty 3241where T : class, IProperty
Evaluation\Expander\WellKnownFunctions.cs (1)
897where 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 (4)
1084dictionary[property.Name] = ((IProperty)property).EvaluatedValueEscaped; 1666return ((IProperty)property).EvaluatedValueEscaped; 2551globalProperties[propertyInstance.Name] = ((IProperty)propertyInstance).EvaluatedValueEscaped; 3055((IProperty)property).EvaluatedValueEscaped,
Instance\ProjectPropertyInstance.cs (2)
98string IProperty.EvaluatedValueEscaped 114string IProperty.GetEvaluatedValueEscaped(IElementLocation location)
Instance\TaskRegistry.cs (5)
258where P : class, IProperty 292where P : class, IProperty 1697where P : class, IProperty 1723where P : class, IProperty 1759where P : class, IProperty
Utilities\Utilities.cs (1)
647if (item is IProperty property && !string.IsNullOrEmpty(property.Name))