4 instantiations of NodeLoggingContext
Microsoft.Build (4)
BackEnd\Components\Scheduler\Scheduler.cs (2)
692_inprocNodeContext = new NodeLoggingContext(_componentHost.LoggingService, InProcNodeId, true); 2216NodeLoggingContext nodeContext = new NodeLoggingContext(_componentHost.LoggingService, nodeId, true);
BackEnd\Node\InProcNode.cs (1)
507_loggingContext = new NodeLoggingContext(loggingService, configuration.NodeId, true /* inProcNode */);
BackEnd\Node\OutOfProcNode.cs (1)
850_loggingContext = new NodeLoggingContext(_loggingService, configuration.NodeId, false /* inProcNode */);
22 references to NodeLoggingContext
Microsoft.Build (22)
BackEnd\Components\BuildRequestEngine\BuildRequestEngine.cs (2)
121private NodeLoggingContext _nodeLoggingContext; 219public void InitializeForBuild(NodeLoggingContext loggingContext)
BackEnd\Components\BuildRequestEngine\IBuildRequestEngine.cs (2)
6using NodeLoggingContext = Microsoft.Build.BackEnd.Logging.NodeLoggingContext; 146void InitializeForBuild(NodeLoggingContext loggingContext);
BackEnd\Components\Logging\ProjectLoggingContext.cs (7)
36internal ProjectLoggingContext(NodeLoggingContext nodeLoggingContext, BuildRequestEntry requestEntry) 57NodeLoggingContext nodeLoggingContext, 83NodeLoggingContext nodeLoggingContext, BuildRequestEntry requestEntry) 102NodeLoggingContext nodeLoggingContext, 121NodeLoggingContext nodeLoggingContext, 157NodeLoggingContext nodeLoggingContext, 188NodeLoggingContext nodeLoggingContext,
BackEnd\Components\RequestBuilder\IRequestBuilder.cs (2)
5using NodeLoggingContext = Microsoft.Build.BackEnd.Logging.NodeLoggingContext; 63void BuildRequest(NodeLoggingContext nodeLoggingContext, BuildRequestEntry entry);
BackEnd\Components\RequestBuilder\RequestBuilder.cs (3)
27using NodeLoggingContext = Microsoft.Build.BackEnd.Logging.NodeLoggingContext; 87private NodeLoggingContext _nodeLoggingContext; 200public void BuildRequest(NodeLoggingContext loggingContext, BuildRequestEntry entry)
BackEnd\Components\Scheduler\Scheduler.cs (3)
22using NodeLoggingContext = Microsoft.Build.BackEnd.Logging.NodeLoggingContext; 193private NodeLoggingContext _inprocNodeContext; 2216NodeLoggingContext nodeContext = new NodeLoggingContext(_componentHost.LoggingService, nodeId, true);
BackEnd\Node\InProcNode.cs (2)
16using NodeLoggingContext = Microsoft.Build.BackEnd.Logging.NodeLoggingContext; 45private NodeLoggingContext _loggingContext;
BackEnd\Node\OutOfProcNode.cs (1)
76private NodeLoggingContext _loggingContext;