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)
691Properties = properties == null ? new Dictionary<string, string>() : new Dictionary<string, string>(properties),
14 references to Properties
dotnet (10)
Commands\MSBuild\MSBuildLogger.cs (10)
282foreach (var kvp in args.Properties) 303TrackEvent(telemetry, $"msbuild/{TargetFrameworkTelemetryEventName}", args.Properties); 306TrackEvent(telemetry, $"msbuild/{BuildTelemetryEventName}", args.Properties, 311TrackEvent(telemetry, $"msbuild/{LoggingConfigurationTelemetryEventName}", args.Properties, 316TrackEvent(telemetry, $"msbuild/{BuildcheckAcquisitionFailureEventName}", args.Properties, 321TrackEvent(telemetry, $"msbuild/{BuildcheckRunEventName}", args.Properties); 324TrackEvent(telemetry, $"msbuild/{BuildcheckRuleStatsEventName}", args.Properties, 329TrackEvent(telemetry, $"msbuild/{TasksDetailsTelemetryEventName}", args.Properties, 334TrackEvent(telemetry, $"msbuild/{RoslynCompilerCacheEventName}", args.Properties); 344TrackEvent(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);