1 write to GlobalProperties
Microsoft.Build (1)
Graph\ProjectGraphEntryPoint.cs (1)
36
GlobalProperties
= globalProperties;
13 references to GlobalProperties
Microsoft.Build (7)
Graph\GraphBuilder.cs (4)
278
if (solutionEntryPoint.
GlobalProperties
!= null)
280
solutionGlobalPropertiesBuilder.AddRange(solutionEntryPoint.
GlobalProperties
);
296
SolutionConfigurationInSolution currentSolutionConfiguration = SelectSolutionConfiguration(Solution, solutionEntryPoint.
GlobalProperties
);
423
var globalPropertyDictionary = CreatePropertyDictionary(entryPoint.
GlobalProperties
);
Graph\GraphBuildRequestData.cs (1)
228
return entryPoint.Value.
GlobalProperties
.AsReadOnly();
Graph\ProjectGraph.cs (2)
462
var globalPropertyString = e.
GlobalProperties
== null
464
: string.Join(", ", e.
GlobalProperties
.Select(kvp => $"{kvp.Key} = {kvp.Value}"));
MSBuild (4)
XMake.cs (4)
1654
if (!entryPoint.
GlobalProperties
.ContainsKey(PropertyNames.IsGraphBuild))
1656
entryPoint.
GlobalProperties
[PropertyNames.IsGraphBuild] = "true";
1662
nodeResultKvp.Key.ProjectInstance.GlobalProperties.Count == entryPoint.
GlobalProperties
.Count &&
1663
nodeResultKvp.Key.ProjectInstance.GlobalProperties.All(propertyKvp => entryPoint.
GlobalProperties
.TryGetValue(propertyKvp.Key, out string entryValue) &&
ProjectCachePlugin (2)
AssemblyMockCache.cs (2)
30
var globalPropertyString = ep.
GlobalProperties
is not null
31
? string.Join("\n\t", ep.
GlobalProperties
.Select(gp => $"{gp.Key}:{gp.Value}"))