10 references to IsGraphBuild
Microsoft.Build (3)
Graph\GraphBuilder.cs (3)
428if (globalPropertyDictionary.GetProperty(PropertyNames.IsGraphBuild) == null) 430globalPropertyDictionary[PropertyNames.IsGraphBuild] = ProjectPropertyInstance.Create(PropertyNames.IsGraphBuild, "true");
Microsoft.Build.Engine.UnitTests (4)
Graph\GraphTestingUtilities.cs (1)
20public static readonly ImmutableDictionary<string, string> EmptyGlobalProperties = new Dictionary<string, string> { { PropertyNames.IsGraphBuild, "true" } }.ToImmutableDictionary();
Graph\ProjectGraph_Tests.cs (3)
2333expectedGlobalProperties[PropertyNames.IsGraphBuild] = "true"; 2350new Dictionary<string, string> { { PropertyNames.IsGraphBuild, "xyz" } }); 2352projectGraph.ProjectNodes.First().ProjectInstance.GlobalProperties[PropertyNames.IsGraphBuild].ShouldBe("xyz");
Microsoft.Build.Framework (1)
MSBuildConstants.cs (1)
147internal const string IsGraphBuild = nameof(IsGraphBuild);
MSBuild (2)
XMake.cs (2)
1654if (!entryPoint.GlobalProperties.ContainsKey(PropertyNames.IsGraphBuild)) 1656entryPoint.GlobalProperties[PropertyNames.IsGraphBuild] = "true";