4 instantiations of TaskExecutionHost
Microsoft.Build (1)
BackEnd\Components\RequestBuilder\TaskBuilder.cs (1)
216_taskExecutionHost = new TaskExecutionHost(host);
Microsoft.Build.Engine.UnitTests (3)
BackEnd\TaskExecutionHost_Tests.cs (3)
983_host = new TaskExecutionHost(); 1014_host = new TaskExecutionHost(); 1246_host = new TaskExecutionHost();
11 references to TaskExecutionHost
Microsoft.Build (7)
BackEnd\Components\RequestBuilder\TaskBuilder.cs (3)
119private TaskExecutionHost _taskExecutionHost; 764private async ValueTask<WorkUnitResult> ExecuteInstantiatedTask(TaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask) 1094private bool GatherTaskOutputs(TaskExecutionHost taskExecutionHost, TaskExecutionMode howToExecuteTask, ItemBucket bucket)
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (4)
193/// Initializes a new instance of the <see cref="TaskExecutionHost"/> class 202/// Finalizes an instance of the <see cref="TaskExecutionHost"/> class. 967Assembly taskExecutionHostAssembly = typeof(TaskExecutionHost).GetTypeInfo().Assembly; 973Assembly taskExecutionHostAssembly = typeof(TaskExecutionHost).GetTypeInfo().Assembly;
Microsoft.Build.Engine.UnitTests (4)
BackEnd\TaskExecutionHost_Tests.cs (4)
49private TaskExecutionHost _host; 968Assert.NotNull((_host as TaskExecutionHost)._UNITTESTONLY_TaskFactoryWrapper); 970Assert.Null((_host as TaskExecutionHost)._UNITTESTONLY_TaskFactoryWrapper); 1263(_host as TaskExecutionHost)._UNITTESTONLY_TaskFactoryWrapper = new TaskFactoryWrapper(taskFactory, loadedType, taskName, TaskHostParameters.Empty);