3 instantiations of ForwardingLoggerRecord
Microsoft.Build (2)
BackEnd\BuildManager\BuildManager.cs (2)
2956
ForwardingLoggerRecord[] forwardingLogger = { new
ForwardingLoggerRecord
(buildCheckLogger, forwardingLoggerDescription) };
3059
return new
ForwardingLoggerRecord
(new NullLogger(), forwardingLoggerDescription);
MSBuild (1)
XMake.cs (1)
1319
remoteLoggerRecords.Add(new
ForwardingLoggerRecord
(distRecord.CentralLogger, distRecord.ForwardingLoggerDescription));
43 references to ForwardingLoggerRecord
Microsoft.Build (37)
BackEnd\BuildManager\BuildManager.cs (9)
41
using ForwardingLoggerRecord = Microsoft.Build.Logging.
ForwardingLoggerRecord
;
2910
IEnumerable<
ForwardingLoggerRecord
>? forwardingLoggers,
2956
ForwardingLoggerRecord
[] forwardingLogger = { new ForwardingLoggerRecord(buildCheckLogger, forwardingLoggerDescription) };
2980
foreach (
ForwardingLoggerRecord
forwardingLoggerRecord in forwardingLoggers)
2996
static List<
ForwardingLoggerRecord
> ProcessForwardingLoggers(IEnumerable<
ForwardingLoggerRecord
>? forwarders)
3007
List<
ForwardingLoggerRecord
> result = forwarders.ToList();
3034
ForwardingLoggerRecord
? configurableLogger = result.FirstOrDefault(l =>
3048
ForwardingLoggerRecord
CreateMinimalForwarder()
BackEnd\BuildManager\BuildParameters.cs (5)
21
using ForwardingLoggerRecord = Microsoft.Build.Logging.
ForwardingLoggerRecord
;
142
private IEnumerable<
ForwardingLoggerRecord
> _forwardingLoggers;
280
_forwardingLoggers = other._forwardingLoggers != null ? new List<
ForwardingLoggerRecord
>(other._forwardingLoggers) : null;
434
public IEnumerable<
ForwardingLoggerRecord
> ForwardingLoggers
442
foreach (
ForwardingLoggerRecord
logger in value)
Definition\Project.cs (7)
29
using ForwardingLoggerRecord = Microsoft.Build.Logging.
ForwardingLoggerRecord
;
1529
public bool Build(IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers)
1574
public bool Build(string target, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers)
1624
public bool Build(string[] targets, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers)
1630
/// See <see cref="Build(string[], IEnumerable<ILogger>, IEnumerable<
ForwardingLoggerRecord
>)"/>.
1637
public bool Build(string[] targets, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers, EvaluationContext evaluationContext)
3329
public override bool Build(string[] targets, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers, EvaluationContext evaluationContext)
Definition\ProjectCollection.cs (6)
22
using ForwardingLoggerRecord = Microsoft.Build.Logging.
ForwardingLoggerRecord
;
262
public ProjectCollection(IDictionary<string, string> globalProperties, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers, ToolsetDefinitionLocations toolsetDefinitionLocations, int maxNodeCount, bool onlyLogCriticalEvents)
281
public ProjectCollection(IDictionary<string, string> globalProperties, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers, ToolsetDefinitionLocations toolsetDefinitionLocations, int maxNodeCount, bool onlyLogCriticalEvents, bool loadProjectsReadOnly)
303
public ProjectCollection(IDictionary<string, string> globalProperties, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers, ToolsetDefinitionLocations toolsetDefinitionLocations, int maxNodeCount, bool onlyLogCriticalEvents, bool loadProjectsReadOnly, bool useAsynchronousLogging, bool reuseProjectRootElementCache)
1302
public void RegisterForwardingLoggers(IEnumerable<
ForwardingLoggerRecord
> remoteLoggers)
1308
foreach (
ForwardingLoggerRecord
remoteLoggerRecord in remoteLoggers)
Instance\ProjectInstance.cs (9)
30
using ForwardingLoggerRecord = Microsoft.Build.Logging.
ForwardingLoggerRecord
;
2119
public bool Build(IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers)
2152
public bool Build(string target, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers)
2187
public bool Build(string[] targets, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers)
2222
public bool Build(string[] targets, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers, out IDictionary<string, TargetResult> targetOutputs)
2681
internal bool Build(string[] targets, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers, ILoggingService loggingService, int maxNodeCount, out IDictionary<string, TargetResult> targetOutputs)
2712
parameters.ForwardingLoggers = remoteLoggers is ICollection<
ForwardingLoggerRecord
> records ?
2714
new List<
ForwardingLoggerRecord
>(remoteLoggers);
2731
internal bool Build(string[] targets, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers, ILoggingService loggingService, out IDictionary<string, TargetResult> targetOutputs)
ObjectModelRemoting\DefinitionObjectsLinks\ProjectLink.cs (1)
256
public abstract bool Build(string[] targets, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers, EvaluationContext evaluationContext);
Microsoft.Build.Engine.OM.UnitTests (3)
Instance\ProjectInstance_Tests.cs (2)
16
using ForwardingLoggerRecord = Microsoft.Build.Logging.
ForwardingLoggerRecord
;
371
instance.Build("t", null, new
ForwardingLoggerRecord
[] { null });
ObjectModelRemoting\RemoteProjectsProviderMock\EvaluationLinkMocks\MockProjectLink.cs (1)
183
public override bool Build(string[] targets, IEnumerable<ILogger> loggers, IEnumerable<
ForwardingLoggerRecord
> remoteLoggers, EvaluationContext evaluationContext)
MSBuild (3)
XMake.cs (3)
41
using ForwardingLoggerRecord = Microsoft.Build.Logging.
ForwardingLoggerRecord
;
1316
List<
ForwardingLoggerRecord
> remoteLoggerRecords = new List<
ForwardingLoggerRecord
>();