16 references to PropertyNames
Microsoft.Build (13)
BackEnd\Components\RequestBuilder\IntrinsicTasks\MSBuild.cs (1)
325.TryGetValue(PropertyNames.BuildNonexistentProjectsByDefault, out var buildNonexistentProjectsByDefault) &&
BuildCheck\Checks\TargetFrameworkConfusionCheck.cs (3)
48if (context.Data.EvaluatedProperties.TryGetValue(PropertyNames.TargetFrameworks, out frameworks) && 50context.Data.EvaluatedProperties.TryGetValue(PropertyNames.TargetFramework, out framework) && 52!context.Data.GlobalProperties.ContainsKey(PropertyNames.TargetFramework))
BuildCheck\Checks\TargetFrameworkUnexpectedCheck.cs (3)
54if ((context.Data.EvaluatedProperties.TryGetValue(PropertyNames.TargetFrameworks, out frameworks) || 55context.Data.EvaluatedProperties.TryGetValue(PropertyNames.TargetFramework, out framework)) && 66=> evaluatedProperties.TryGetValue(PropertyNames.UsingMicrosoftNETSdk, out string? usingSdkStr) &&
Graph\GraphBuilder.cs (3)
436if (globalPropertyDictionary.GetProperty(PropertyNames.IsGraphBuild) == null) 438globalPropertyDictionary[PropertyNames.IsGraphBuild] = ProjectPropertyInstance.Create(PropertyNames.IsGraphBuild, "true");
Graph\ProjectInterpretation.cs (3)
216return project.GetPropertyValue(PropertyNames.InnerBuildProperty); 221return project.GetPropertyValue(project.GetPropertyValue(PropertyNames.InnerBuildPropertyValues)); 555MSBuildStringIsTrue(projectInstance.GetEngineRequiredPropertyValue(PropertyNames.UsingMicrosoftNETSdk)) &&
Microsoft.Build.Tasks.Core (1)
MSBuild.cs (1)
284.TryGetValue(PropertyNames.BuildNonexistentProjectsByDefault, out var buildNonexistentProjectsByDefault) &&
MSBuild (2)
XMake.cs (2)
1659if (!entryPoint.GlobalProperties.ContainsKey(PropertyNames.IsGraphBuild)) 1661entryPoint.GlobalProperties[PropertyNames.IsGraphBuild] = "true";