12 references to GlobalProperties
Microsoft.Build (6)
BackEnd\Shared\BuildResult.cs (2)
134
/// be used to retrieve <see cref="ProjectInstance.Properties"/>, <see cref="ProjectInstance.
GlobalProperties
"/> and
415
/// be used to retrieve <see cref="ProjectInstance.Properties"/>, <see cref="ProjectInstance.
GlobalProperties
"/> and
Graph\GraphBuildRequestData.cs (1)
222
return node.ProjectInstance.
GlobalProperties
.AsReadOnly();
Graph\ProjectGraph.cs (1)
521
node.ProjectInstance.
GlobalProperties
.OrderBy(kvp => kvp.Key)
Graph\ProjectGraphNode.cs (1)
53
$"{truncatedProjectFile}, #GlobalProps={ProjectInstance.
GlobalProperties
.Count}, #Props={ProjectInstance.Properties.Count}, #Items={ProjectInstance.Items.Count}, #in={ReferencingProjects.Count}, #out={ProjectReferences.Count}";
Instance\ProjectInstance.cs (1)
2422
/// Replaces the project state (<see cref="
GlobalProperties
"/>, <see cref="Properties"/> and <see cref="Items"/>) with that
MSBuild (2)
XMake.cs (2)
1673
nodeResultKvp.Key.ProjectInstance.
GlobalProperties
.Count == entryPoint.GlobalProperties.Count &&
1674
nodeResultKvp.Key.ProjectInstance.
GlobalProperties
.All(propertyKvp => entryPoint.GlobalProperties.TryGetValue(propertyKvp.Key, out string entryValue) &&
NuGet.Build.Tasks.Console (4)
MSBuildProjectInstance.cs (1)
58
if (_projectInstance.
GlobalProperties
.TryGetValue(property, out string value))
MSBuildStaticGraphRestore.cs (3)
823
var adapter = new RestoreProjectAdapter(args.projectInstance.FullPath, args.projectInstance.
GlobalProperties
);
1312
if (!projectInstance.Targets.ContainsKey("_IsProjectRestoreSupported") || projectInstance.
GlobalProperties
== null || projectInstance.
GlobalProperties
.TryGetValue("TargetFramework", out string targetFramework) && string.IsNullOrWhiteSpace(targetFramework))