5 implementations of IForwardingLogger
Microsoft.Build (4)
BackEnd\Components\Logging\CentralForwardingLogger.cs (1)
14internal class CentralForwardingLogger : IForwardingLogger
BuildCheck\Infrastructure\BuildCheckForwardingLogger.cs (1)
19internal class BuildCheckForwardingLogger : IForwardingLogger
Logging\DistributedLoggers\ConfigurableForwardingLogger.cs (1)
13public class ConfigurableForwardingLogger : IForwardingLogger
Logging\DistributedLoggers\DistributedFileLogger.cs (1)
17public class DistributedFileLogger : IForwardingLogger
Microsoft.Build.Engine.UnitTests (1)
BackEnd\LoggingService_Tests.cs (1)
1179public class BaseFLThrowException : LoggerThrowException, IForwardingLogger
7 references to IForwardingLogger
Microsoft.Build (7)
BackEnd\Components\Logging\LoggingService.cs (3)
904if (logger is IForwardingLogger) 1134IForwardingLogger localForwardingLogger = null; 1220IForwardingLogger forwardingLogger = description.CreateForwardingLogger();
Logging\LoggerDescription.cs (4)
156internal IForwardingLogger CreateForwardingLogger() 158IForwardingLogger forwardingLogger = null; 161forwardingLogger = (IForwardingLogger)CreateLogger(true); 207logger = (IForwardingLogger)Activator.CreateInstance(loggerClass.Type);