5 instantiations of ProjectLoggingContext
Microsoft.Build (3)
BackEnd\Components\Logging\NodeLoggingContext.cs (2)
62return new ProjectLoggingContext(this, requestEntry); 80return new ProjectLoggingContext(this, request, configuration.ProjectFullPath, configuration.ToolsVersion, evaluationId);
BackEnd\Components\RequestBuilder\RequestBuilder.cs (1)
1139_projectLoggingContext = new ProjectLoggingContext(
Microsoft.Build.Engine.UnitTests (2)
BackEnd\TargetBuilder_Tests.cs (1)
1660return new ProjectLoggingContext(new NodeLoggingContext(_host, 1, false), entry);
BackEnd\TargetEntry_Tests.cs (1)
1190return new ProjectLoggingContext(new NodeLoggingContext(_host, 1, false), entry);
20 references to ProjectLoggingContext
Microsoft.Build (16)
BackEnd\Components\Logging\NodeLoggingContext.cs (3)
59internal ProjectLoggingContext LogProjectStarted(BuildRequestEntry requestEntry) 71internal ProjectLoggingContext LogProjectStarted(BuildRequest request, BuildRequestConfiguration configuration) 89ProjectLoggingContext projectLoggingContext = LogProjectStarted(request, configuration);
BackEnd\Components\Logging\TargetLoggingContext.cs (3)
29private ProjectLoggingContext _projectLoggingContext; 39internal TargetLoggingContext(ProjectLoggingContext projectLoggingContext, string projectFullPath, ProjectTargetInstance target, string parentTargetName, TargetBuiltReason buildReason) 70internal ProjectLoggingContext ProjectLoggingContext
BackEnd\Components\RequestBuilder\ITargetBuilder.cs (1)
28Task<BuildResult> BuildTargets(ProjectLoggingContext projectLoggingContext, BuildRequestEntry entry, IRequestBuilderCallback callback, string[] targets, Lookup baseLookup, CancellationToken cancellationToken);
BackEnd\Components\RequestBuilder\RequestBuilder.cs (2)
24using ProjectLoggingContext = Microsoft.Build.BackEnd.Logging.ProjectLoggingContext; 88private ProjectLoggingContext _projectLoggingContext;
BackEnd\Components\RequestBuilder\TargetBuilder.cs (3)
17using ProjectLoggingContext = Microsoft.Build.BackEnd.Logging.ProjectLoggingContext; 76private ProjectLoggingContext _projectLoggingContext; 103public async Task<BuildResult> BuildTargets(ProjectLoggingContext loggingContext, BuildRequestEntry entry, IRequestBuilderCallback callback, string[] targetNames, Lookup baseLookup, CancellationToken cancellationToken)
BackEnd\Components\RequestBuilder\TargetEntry.cs (4)
19using ProjectLoggingContext = Microsoft.Build.BackEnd.Logging.ProjectLoggingContext; 328internal List<TargetSpecification> GetDependencies(ProjectLoggingContext projectLoggingContext) 412internal async Task ExecuteTarget(ITaskBuilder taskBuilder, BuildRequestEntry requestEntry, ProjectLoggingContext projectLoggingContext, CancellationToken cancellationToken) 691internal List<TargetSpecification> GetErrorTargets(ProjectLoggingContext projectLoggingContext)
Microsoft.Build.Engine.UnitTests (4)
BackEnd\RequestBuilder_Tests.cs (1)
359public Task<BuildResult> BuildTargets(ProjectLoggingContext loggingContext, BuildRequestEntry entry, IRequestBuilderCallback callback, string[] targets, Lookup baseLookup, CancellationToken cancellationToken)
BackEnd\TargetBuilder_Tests.cs (2)
23using ProjectLoggingContext = Microsoft.Build.BackEnd.Logging.ProjectLoggingContext; 1658private ProjectLoggingContext GetProjectLoggingContext(BuildRequestEntry entry)
BackEnd\TargetEntry_Tests.cs (1)
1188private ProjectLoggingContext GetProjectLoggingContext(BuildRequestEntry entry)