4 instantiations of NodeLoggingContext
Microsoft.Build (4)
BackEnd\Components\Scheduler\Scheduler.cs (2)
692
_inprocNodeContext = new
NodeLoggingContext
(_componentHost.LoggingService, InProcNodeId, true);
2216
NodeLoggingContext 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)
121
private
NodeLoggingContext
_nodeLoggingContext;
219
public void InitializeForBuild(
NodeLoggingContext
loggingContext)
BackEnd\Components\BuildRequestEngine\IBuildRequestEngine.cs (2)
6
using NodeLoggingContext = Microsoft.Build.BackEnd.Logging.
NodeLoggingContext
;
146
void InitializeForBuild(
NodeLoggingContext
loggingContext);
BackEnd\Components\Logging\ProjectLoggingContext.cs (7)
36
internal ProjectLoggingContext(
NodeLoggingContext
nodeLoggingContext, BuildRequestEntry requestEntry)
57
NodeLoggingContext
nodeLoggingContext,
83
NodeLoggingContext
nodeLoggingContext, BuildRequestEntry requestEntry)
102
NodeLoggingContext
nodeLoggingContext,
121
NodeLoggingContext
nodeLoggingContext,
157
NodeLoggingContext
nodeLoggingContext,
188
NodeLoggingContext
nodeLoggingContext,
BackEnd\Components\RequestBuilder\IRequestBuilder.cs (2)
5
using NodeLoggingContext = Microsoft.Build.BackEnd.Logging.
NodeLoggingContext
;
63
void BuildRequest(
NodeLoggingContext
nodeLoggingContext, BuildRequestEntry entry);
BackEnd\Components\RequestBuilder\RequestBuilder.cs (3)
27
using NodeLoggingContext = Microsoft.Build.BackEnd.Logging.
NodeLoggingContext
;
87
private
NodeLoggingContext
_nodeLoggingContext;
200
public void BuildRequest(
NodeLoggingContext
loggingContext, BuildRequestEntry entry)
BackEnd\Components\Scheduler\Scheduler.cs (3)
22
using NodeLoggingContext = Microsoft.Build.BackEnd.Logging.
NodeLoggingContext
;
193
private
NodeLoggingContext
_inprocNodeContext;
2216
NodeLoggingContext
nodeContext = new NodeLoggingContext(_componentHost.LoggingService, nodeId, true);
BackEnd\Node\InProcNode.cs (2)
16
using NodeLoggingContext = Microsoft.Build.BackEnd.Logging.
NodeLoggingContext
;
45
private
NodeLoggingContext
_loggingContext;
BackEnd\Node\OutOfProcNode.cs (1)
76
private
NodeLoggingContext
_loggingContext;