1 write to EvaluatedProperties
Microsoft.Build (1)
BuildCheck\OM\EvaluatedPropertiesCheckData.cs (1)
19=> (EvaluatedProperties, GlobalProperties) = (evaluatedProperties, globalProperties);
6 references to EvaluatedProperties
Microsoft.Build (6)
BuildCheck\Checks\CopyAlwaysCheck.cs (1)
53context.Data.EvaluatedProperties.TryGetValue("SkipUnchangedFilesOnCopyAlways", out string? skipUnchanged);
BuildCheck\Checks\PreferProjectReferenceCheck.cs (1)
57context.Data.EvaluatedProperties.TryGetValue(ItemMetadataNames.targetPath, out targetPath);
BuildCheck\Checks\SharedOutputPathCheck.cs (2)
50context.Data.EvaluatedProperties.TryGetValue("OutputPath", out binPath); 51context.Data.EvaluatedProperties.TryGetValue("IntermediateOutputPath", out objPath);
BuildCheck\Checks\TargetFrameworkConfusionCheck.cs (2)
48if (context.Data.EvaluatedProperties.TryGetValue(PropertyNames.TargetFrameworks, out frameworks) && 49context.Data.EvaluatedProperties.TryGetValue(PropertyNames.TargetFramework, out framework) &&