7 overrides of ExecuteTool
Crossgen2Tasks (1)
RunReadyToRunCompiler.cs (1)
399protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands)
Microsoft.Build.Tasks.CodeAnalysis (2)
src\roslyn\src\Compilers\Core\MSBuildTask\InteractiveCompiler.cs (1)
185protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands)
src\roslyn\src\Compilers\Core\MSBuildTask\ManagedCompiler.cs (1)
507protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands)
Microsoft.Build.Tasks.Core (1)
Exec.cs (1)
291protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands)
Microsoft.NET.Build.Tasks (1)
RunReadyToRunCompiler.cs (1)
432protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands)
Microsoft.NET.Sdk.Razor.Tasks (1)
DotnetToolTask.cs (1)
100protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands)
sdk-tasks (1)
TarGzFileCreateFromDirectory.cs (1)
39protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands)
17 references to ExecuteTool
Crossgen2Tasks (1)
RunReadyToRunCompiler.cs (1)
407return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
Microsoft.Build.Tasks.CodeAnalysis (10)
src\roslyn\src\Compilers\Core\MSBuildTask\InteractiveCompiler.cs (1)
192return (SkipInteractiveExecution) ? 0 : base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
src\roslyn\src\Compilers\Core\MSBuildTask\ManagedCompiler.cs (9)
538return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 549return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 688return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 701return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 705return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 709return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 714return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 720return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 724return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
Microsoft.Build.Tasks.Core (1)
Exec.cs (1)
295return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
Microsoft.Build.Utilities.Core (2)
ToolTask.cs (2)
365/// Overridable function called after <see cref="Process.Start()"/> in <see cref="ExecuteTool"/> 1686ExitCode = ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
Microsoft.NET.Build.Tasks (1)
RunReadyToRunCompiler.cs (1)
440return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
Microsoft.NET.Sdk.Razor.Tasks (1)
DotnetToolTask.cs (1)
108return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
sdk-tasks (1)
TarGzFileCreateFromDirectory.cs (1)
41int returnCode = base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);