3 writes to GlobalProperties
Microsoft.Build.CommandLine.UnitTests (2)
TerminalLogger_Tests.cs (2)
665pse.GlobalProperties = new Dictionary<string, string>() { ["TargetFramework"] = "tfName" }; 678pse2.GlobalProperties = new Dictionary<string, string>() { ["TargetFramework"] = "tf2" };
Microsoft.Build.Framework (1)
ProjectStartedEventArgs.cs (1)
117this.GlobalProperties = globalProperties;
8 references to GlobalProperties
Microsoft.Build (1)
Logging\BinaryLogger\BuildEventArgsWriter.cs (1)
427Write(e.GlobalProperties);
Microsoft.Build.Engine.UnitTests (1)
BuildEventArgsSerialization_Tests.cs (1)
169e => TranslationHelpers.GetPropertiesString(e.GlobalProperties),
Microsoft.DotNet.ArcadeLogging (2)
PipelinesLogger.cs (2)
248propertyCategory = e.GlobalProperties?.LastOrDefault(p => p.Key.ToString().Equals($"_{s_TelemetryMarker}")).Value; 304if (e.GlobalProperties.TryGetValue("TargetFramework", out string targetFramework))
MSBuild (1)
TerminalLogger\TerminalLogger.cs (1)
495if (e.GlobalProperties?.TryGetValue("TargetFramework", out string? targetFramework) != true)
TaskUsageLogger (1)
TaskUsageLogger.cs (1)
113Project p = _privateCollection.LoadProject(e.ProjectFile, e.GlobalProperties, e.ToolsVersion);
XmlFileLogger (2)
ObjectModel\Project.cs (2)
126if (projectStartedEventArgs.GlobalProperties != null) 128Properties.AddProperties(projectStartedEventArgs.GlobalProperties);