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)
433protected 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); 702return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 706return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 710return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 715return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 721return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 725return 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)
361/// Overridable function called after <see cref="Process.Start()"/> in <see cref="ExecuteTool"/> 1679ExitCode = ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
Microsoft.NET.Build.Tasks (1)
RunReadyToRunCompiler.cs (1)
441return 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);