3 overrides of IsEnvironmentProperty
Microsoft.Build (3)
Definition\ProjectProperty.cs (2)
416
public override bool
IsEnvironmentProperty
613
public override bool
IsEnvironmentProperty
ObjectModelRemoting\LinkedObjectFactory.cs (1)
347
public override bool
IsEnvironmentProperty
=> Link.IsEnvironmentProperty;
10 references to IsEnvironmentProperty
Microsoft.Build (4)
Definition\Project.cs (1)
2936
if (property?.
IsEnvironmentProperty
== false &&
Evaluation\Evaluator.cs (1)
832
(p is ProjectProperty pp && pp.
IsEnvironmentProperty
)) &&
Instance\ProjectInstance.cs (1)
3053
property.
IsEnvironmentProperty
);
ObjectModelRemoting\DefinitionObjectsLinks\ProjectPropertyLink.cs (1)
44
/// Access to remote <see cref="ProjectProperty.
IsEnvironmentProperty
"/>.
Microsoft.Build.Engine.OM.UnitTests (6)
Definition\ProjectProperty_Tests.cs (3)
180
Assert.True(project.GetProperty(varName).
IsEnvironmentProperty
);
196
Assert.False(project.GetProperty("g").
IsEnvironmentProperty
);
212
Assert.False(project.GetProperty("MSBuildProjectFile").
IsEnvironmentProperty
);
ObjectModelRemoting\Helpers\ViewValidation.evaluation.cs (2)
112
Assert.Equal(real.
IsEnvironmentProperty
, view.
IsEnvironmentProperty
);
ObjectModelRemoting\RemoteProjectsProviderMock\EvaluationLinkMocks\MockProjectPropertyLink.cs (1)
26
public bool IsEnvironmentProperty => this.Source.
IsEnvironmentProperty
;