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