2 implementations of Loggers
Microsoft.Build (1)
BackEnd\Components\Logging\LoggingService.cs (1)
486
public ICollection<ILogger>
Loggers
=> _loggers;
Microsoft.Build.Engine.UnitTests (1)
BackEnd\MockLoggingService.cs (1)
59
public ICollection<ILogger>
Loggers
3 references to Loggers
Microsoft.Build (3)
BackEnd\BuildManager\BuildManager.cs (1)
2956
if (loggingService.
Loggers
.Count == 0)
Definition\ProjectCollection.cs (2)
615
return _loggingService.
Loggers
== null
617
: new List<ILogger>(_loggingService.
Loggers
);