6 overrides of ExecuteTool
Crossgen2Tasks (1)
RunReadyToRunCompiler.cs (1)
387protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands)
Microsoft.Build.Tasks.CodeAnalysis (2)
InteractiveCompiler.cs (1)
187protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands)
ManagedCompiler.cs (1)
521protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands)
Microsoft.Build.Tasks.Core (1)
Exec.cs (1)
292protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands)
Microsoft.Build.Utilities.UnitTests (2)
ToolTask_Tests.cs (2)
106protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands) 819protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands)
15 references to ExecuteTool
Crossgen2Tasks (1)
RunReadyToRunCompiler.cs (1)
395return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
Microsoft.Build.Tasks.CodeAnalysis (10)
InteractiveCompiler.cs (1)
194return (SkipInteractiveExecution) ? 0 : base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
ManagedCompiler.cs (9)
551return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 562return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 699return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 712return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 716return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 720return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 725return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 731return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands); 735return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
Microsoft.Build.Tasks.Core (1)
Exec.cs (1)
296return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
Microsoft.Build.Utilities.Core (2)
ToolTask.cs (2)
357/// Overridable function called after <see cref="Process.Start()"/> in <see cref="ExecuteTool"/> 1580ExitCode = ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
Microsoft.Build.Utilities.UnitTests (1)
ToolTask_Tests.cs (1)
117int result = base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);