2 implementations of EventQueueCount
Microsoft.Build (1)
BackEnd\Components\Logging\LoggingService.cs (1)
521
public int
EventQueueCount
=> _eventQueue?.Count ?? 0;
Microsoft.Build.Engine.UnitTests (1)
BackEnd\MockLoggingService.cs (1)
169
public int
EventQueueCount
=> 0;
1 reference to EventQueueCount
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
1356
telemetry.LoggingEventQueueDepth = loggingService.
EventQueueCount
;