2 writes to Properties
Microsoft.Build (1)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
872Properties = properties == null ? new Dictionary<string, string>() : new Dictionary<string, string>(properties)
MSBuild (1)
OutOfProcTaskHostNode.cs (1)
667Properties = properties == null ? new Dictionary<string, string>() : new Dictionary<string, string>(properties),
12 references to Properties
dotnet (8)
Commands\MSBuild\MSBuildLogger.cs (8)
163foreach (var kvp in args.Properties) 184TrackEvent(telemetry, $"msbuild/{TargetFrameworkTelemetryEventName}", args.Properties); 187TrackEvent(telemetry, $"msbuild/{BuildTelemetryEventName}", args.Properties, 192TrackEvent(telemetry, $"msbuild/{LoggingConfigurationTelemetryEventName}", args.Properties, 197TrackEvent(telemetry, $"msbuild/{BuildcheckAcquisitionFailureEventName}", args.Properties, 202TrackEvent(telemetry, $"msbuild/{BuildcheckRunEventName}", args.Properties); 205TrackEvent(telemetry, $"msbuild/{BuildcheckRuleStatsEventName}", args.Properties, 217TrackEvent(telemetry, args.EventName, args.Properties);
Microsoft.Build.Framework (4)
TelemetryEventArgs.cs (4)
31int count = Properties?.Count ?? 0; 34if (Properties == null) 39foreach (var kvp in Properties) 57Properties.Add(key, value);