2 writes to IsCustom
Microsoft.Build.Framework (2)
Telemetry\TaskOrTargetTelemetryKey.cs (2)
26IsCustom = isCustom; 40IsCustom = isCustom;
11 references to IsCustom
Microsoft.Build.Framework (11)
Telemetry\TaskOrTargetTelemetryKey.cs (4)
95IsCustom == other.IsCustom && 105hashCode = (hashCode * 397) ^ IsCustom.GetHashCode(); 112public override string ToString() => $"{Name},Custom:{IsCustom},IsFromNugetCache:{IsNuget},IsFromMetaProject:{IsMetaProj}";
Telemetry\TelemetryDataUtils.cs (6)
73valuePair.Key.IsCustom, 81static bool ShouldHashKey(TaskOrTargetTelemetryKey key) => key.IsCustom || key.IsMetaProj; 96string taskName = valuePair.Key.IsCustom ? GetHashed(valuePair.Key.Name) : valuePair.Key.Name; 104valuePair.Key.IsCustom, 260(key.IsCustom, isExecuted) switch 305var taskInfo = kv.Key.IsCustom ? CustomTasksInfo : BuiltinTasksInfo;
Telemetry\WorkerNodeTelemetryEventArgs.cs (1)
82writer.Write(key.IsCustom);