10 references to ExecuteTaskAndGatherOutputs
Microsoft.Build (8)
BackEnd\Components\RequestBuilder\TargetEntry.cs (2)
869executionMode = TaskExecutionMode.ExecuteTaskAndGatherOutputs; 876executionMode |= TaskExecutionMode.ExecuteTaskAndGatherOutputs;
BackEnd\Components\RequestBuilder\TaskBuilder.cs (6)
199if ((mode & TaskExecutionMode.ExecuteTaskAndGatherOutputs) == TaskExecutionMode.ExecuteTaskAndGatherOutputs) 201taskResult = await ExecuteTask(TaskExecutionMode.ExecuteTaskAndGatherOutputs, executeLookup); 446if (howToExecuteTask == TaskExecutionMode.ExecuteTaskAndGatherOutputs) 640if (howToExecuteTask == TaskExecutionMode.ExecuteTaskAndGatherOutputs) 1168if (howToExecuteTask == TaskExecutionMode.ExecuteTaskAndGatherOutputs)
Microsoft.Build.Engine.UnitTests (2)
BackEnd\MockTaskBuilder.cs (2)
99else if ((mode & TaskExecutionMode.ExecuteTaskAndGatherOutputs) == TaskExecutionMode.ExecuteTaskAndGatherOutputs)