1 write to EvaluatedProperties
Microsoft.Build (1)
BuildCheck\OM\EvaluatedPropertiesCheckData.cs (1)
19=> (EvaluatedProperties, GlobalProperties) = (evaluatedProperties, globalProperties);
10 references to EvaluatedProperties
Microsoft.Build (10)
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) &&
BuildCheck\Checks\TargetFrameworkUnexpectedCheck.cs (4)
54if ((context.Data.EvaluatedProperties.TryGetValue(PropertyNames.TargetFrameworks, out frameworks) || 55context.Data.EvaluatedProperties.TryGetValue(PropertyNames.TargetFramework, out framework)) && 58!IsSdkStyleProject(context.Data.EvaluatedProperties) && !IsCppCliProject(context.Data.EvaluatedProperties)