1 instantiation of EnvironmentDerivedProjectPropertyInstance
Microsoft.Build (1)
Instance\ProjectPropertyInstance.cs (1)
339
ProjectPropertyInstance instance = isEnvironmentProperty ? new
EnvironmentDerivedProjectPropertyInstance
(name, escapedValue, loggingContext) :
7 references to EnvironmentDerivedProjectPropertyInstance
Microsoft.Build (7)
BackEnd\Components\Logging\ProjectLoggingContext.cs (1)
218
properties = projectProperties.Filter(p => p is not
EnvironmentDerivedProjectPropertyInstance
|| EnvironmentUtilities.IsWellKnownEnvironmentDerivedProperty(p.Name), p => new DictionaryEntry(p.Name, p.EvaluatedValue));
Evaluation\Evaluator.cs (1)
831
if ((p is
EnvironmentDerivedProjectPropertyInstance
||
Evaluation\Expander.cs (1)
1581
if (property is ProjectPropertyInstance.
EnvironmentDerivedProjectPropertyInstance
environmentDerivedProperty)
Instance\ProjectPropertyInstance.cs (4)
102
if (this is
EnvironmentDerivedProjectPropertyInstance
envProperty && envProperty.loggingContext?.IsValid == true && !envProperty._loggedEnvProperty && !Traits.LogAllEnvironmentVariables)
116
if (this is
EnvironmentDerivedProjectPropertyInstance
envProperty && envProperty.loggingContext?.IsValid == true && !envProperty._loggedEnvProperty && !Traits.LogAllEnvironmentVariables)
256
return Create(that._name, that._escapedValue, mayBeReserved: true /* already validated */, isImmutable: that.IsImmutable, that is
EnvironmentDerivedProjectPropertyInstance
);
265
return Create(that._name, that._escapedValue, mayBeReserved: true /* already validated */, isImmutable: isImmutable, that is
EnvironmentDerivedProjectPropertyInstance
);