17 references to NodeLoggingContext
Microsoft.Build (4)
BackEnd\Components\Scheduler\Scheduler.cs (2)
677
_inprocNodeContext = new
NodeLoggingContext
(_componentHost.LoggingService, InProcNodeId, true);
2201
NodeLoggingContext nodeContext = new
NodeLoggingContext
(_componentHost.LoggingService, nodeId, true);
BackEnd\Node\InProcNode.cs (1)
506
_loggingContext = new
NodeLoggingContext
(loggingService, configuration.NodeId, true /* inProcNode */);
BackEnd\Node\OutOfProcNode.cs (1)
850
_loggingContext = new
NodeLoggingContext
(_loggingService, configuration.NodeId, false /* inProcNode */);
Microsoft.Build.Engine.UnitTests (13)
BackEnd\BuildRequestEngine_Tests.cs (4)
338
_engine.InitializeForBuild(new
NodeLoggingContext
(_host.LoggingService, 0, false));
369
_engine.InitializeForBuild(new
NodeLoggingContext
(_host.LoggingService, 0, false));
403
_engine.InitializeForBuild(new
NodeLoggingContext
(_host.LoggingService, 0, false));
458
_engine.InitializeForBuild(new
NodeLoggingContext
(_host.LoggingService, 0, false));
BackEnd\IntrinsicTask_Tests.cs (2)
3961
NodeLoggingContext nodeContext = new
NodeLoggingContext
(new MockLoggingService(), 1, false);
3996
var nodeContext = new
NodeLoggingContext
(new MockLoggingService(), 1, false);
BackEnd\LoggingContext_Tests.cs (4)
31
NodeLoggingContext context = new
NodeLoggingContext
(new MockLoggingService(_output.WriteLine), 1, true);
40
NodeLoggingContext context2 = new
NodeLoggingContext
(new MockLoggingService(_output.WriteLine), 2, false);
60
_ = new
NodeLoggingContext
(new MockLoggingService(), -2, true);
67
NodeLoggingContext context = new
NodeLoggingContext
(new MockLoggingService(_output.WriteLine), 1, true);
BackEnd\RequestBuilder_Tests.cs (1)
342
return new
NodeLoggingContext
(_host, 1, false);
BackEnd\TargetBuilder_Tests.cs (1)
1697
return new ProjectLoggingContext(new
NodeLoggingContext
(_host, 1, false), entry);
BackEnd\TargetEntry_Tests.cs (1)
1088
return new ProjectLoggingContext(new
NodeLoggingContext
(_host, 1, false), entry);