8 implementations of IForwardingLogger
dotnet (1)
Commands\MSBuild\MSBuildForwardingLogger.cs (1)
10
public sealed class MSBuildForwardingLogger :
IForwardingLogger
Microsoft.Build (5)
BackEnd\Components\Logging\CentralForwardingLogger.cs (1)
14
internal class CentralForwardingLogger :
IForwardingLogger
BuildCheck\Infrastructure\BuildCheckForwardingLogger.cs (1)
19
internal class BuildCheckForwardingLogger :
IForwardingLogger
Logging\DistributedLoggers\ConfigurableForwardingLogger.cs (1)
13
public class ConfigurableForwardingLogger :
IForwardingLogger
Logging\DistributedLoggers\DistributedFileLogger.cs (1)
17
public class DistributedFileLogger :
IForwardingLogger
Logging\TerminalLogger\ForwardingTerminalLogger.cs (1)
13
public sealed partial class ForwardingTerminalLogger :
IForwardingLogger
Microsoft.Build.Engine.UnitTests (1)
BackEnd\LoggingService_Tests.cs (1)
1178
public class BaseFLThrowException : LoggerThrowException,
IForwardingLogger
Microsoft.Build.Framework (1)
Telemetry\InternalTelemetryForwardingLogger.cs (1)
9
internal class InternalTelemetryForwardingLogger :
IForwardingLogger
7 references to IForwardingLogger
Microsoft.Build (7)
BackEnd\Components\Logging\LoggingService.cs (3)
923
if (logger is
IForwardingLogger
)
1106
IForwardingLogger
localForwardingLogger = null;
1194
IForwardingLogger
forwardingLogger = description.CreateForwardingLogger();
Logging\LoggerDescription.cs (4)
156
internal
IForwardingLogger
CreateForwardingLogger()
158
IForwardingLogger
forwardingLogger = null;
161
forwardingLogger = (
IForwardingLogger
)CreateLogger(true);
207
logger = (
IForwardingLogger
)Activator.CreateInstance(loggerClass.Type);