/MSBuild/Microsoft/Build/CommandLine/DistributedLoggerRecord.cs
# · C# · 35 lines · 30 code · 5 blank · 0 comment · 0 complexity · 0116493ac181be3019daa6f218cb1677 MD5 · raw file
- namespace Microsoft.Build.CommandLine
- {
- using Microsoft.Build.Framework;
- using Microsoft.Build.Logging;
- using System;
-
- internal class DistributedLoggerRecord
- {
- private ILogger centralLogger;
- private LoggerDescription forwardingLoggerDescription;
-
- internal DistributedLoggerRecord(ILogger centralLogger, LoggerDescription forwardingLoggerDescription)
- {
- this.centralLogger = centralLogger;
- this.forwardingLoggerDescription = forwardingLoggerDescription;
- }
-
- internal ILogger CentralLogger
- {
- get
- {
- return this.centralLogger;
- }
- }
-
- internal LoggerDescription ForwardingLoggerDescription
- {
- get
- {
- return this.forwardingLoggerDescription;
- }
- }
- }
- }