4 instantiations of TaskExecutionHost
Microsoft.Build (1)
BackEnd\Components\RequestBuilder\TaskBuilder.cs (1)
201
_taskExecutionHost = new
TaskExecutionHost
(host);
Microsoft.Build.Engine.UnitTests (3)
BackEnd\TaskExecutionHost_Tests.cs (3)
982
_host = new
TaskExecutionHost
();
1010
_host = new
TaskExecutionHost
();
1235
_host = new
TaskExecutionHost
();
11 references to TaskExecutionHost
Microsoft.Build (7)
BackEnd\Components\RequestBuilder\TaskBuilder.cs (3)
118
private
TaskExecutionHost
_taskExecutionHost;
746
private async ValueTask<WorkUnitResult> ExecuteInstantiatedTask(
TaskExecutionHost
taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask)
1076
private bool GatherTaskOutputs(
TaskExecutionHost
taskExecutionHost, TaskExecutionMode howToExecuteTask, ItemBucket bucket)
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (4)
183
/// Initializes a new instance of the <see cref="
TaskExecutionHost
"/> class
192
/// Finalizes an instance of the <see cref="
TaskExecutionHost
"/> class.
922
Assembly taskExecutionHostAssembly = typeof(
TaskExecutionHost
).GetTypeInfo().Assembly;
928
Assembly taskExecutionHostAssembly = typeof(
TaskExecutionHost
).GetTypeInfo().Assembly;
Microsoft.Build.Engine.UnitTests (4)
BackEnd\TaskExecutionHost_Tests.cs (4)
48
private
TaskExecutionHost
_host;
967
Assert.NotNull((_host as
TaskExecutionHost
)._UNITTESTONLY_TaskFactoryWrapper);
969
Assert.Null((_host as
TaskExecutionHost
)._UNITTESTONLY_TaskFactoryWrapper);
1252
(_host as
TaskExecutionHost
)._UNITTESTONLY_TaskFactoryWrapper = new TaskFactoryWrapper(taskFactory, loadedType, taskName, null);