2 writes to IsFromNugetCache
Microsoft.Build.Framework (2)
Telemetry\TaskOrTargetTelemetryKey.cs (2)
14IsFromNugetCache = isFromNugetCache; 22IsFromNugetCache = isFromNugetCache;
11 references to IsFromNugetCache
Microsoft.Build (4)
TelemetryInfra\TelemetryDataUtils.cs (4)
94writer.WriteBoolean("IsFromNuget", valuePair.Key.IsFromNugetCache); 135writer.WriteBoolean("IsFromNuget", valuePair.Key.IsFromNugetCache); 166if (kkey.IsFromNugetCache) 253if (kkey.IsFromNugetCache)
Microsoft.Build.Engine.UnitTests (2)
TelemetryTests.cs (2)
85workerNodeTelemetryData.TasksExecutionData.Keys.ShouldAllBe(k => !k.IsCustom && !k.IsFromNugetCache); 169workerNodeTelemetryData.TasksExecutionData.Keys.ShouldAllBe(k => !k.IsFromNugetCache);
Microsoft.Build.Framework (5)
Telemetry\TaskOrTargetTelemetryKey.cs (4)
49IsFromNugetCache == other.IsFromNugetCache && 59hashCode = (hashCode * 397) ^ IsFromNugetCache.GetHashCode(); 65public override string ToString() => $"{Name},Custom:{IsCustom},IsFromNugetCache:{IsFromNugetCache},IsFromMetaProject:{IsFromMetaProject}";
Telemetry\WorkerNodeTelemetryEventArgs.cs (1)
65writer.Write(key.IsFromNugetCache);