3 overrides of GetProcessStartInfo
Microsoft.Build.Utilities.UnitTests (1)
ToolTask_Tests.cs (1)
85protected override ProcessStartInfo GetProcessStartInfo(string pathToTool, string commandLineCommands, string responseFileSwitch)
Microsoft.NET.Build.Containers (1)
Tasks\CreateNewImageToolTask.cs (1)
64protected override ProcessStartInfo GetProcessStartInfo(string pathToTool, string commandLineCommands, string responseFileSwitch)
sdk-tasks (1)
DotNetTool.cs (1)
20protected override ProcessStartInfo GetProcessStartInfo(string pathToTool, string commandLineCommands, string responseFileSwitch)
4 references to GetProcessStartInfo
Microsoft.Build.Utilities.Core (1)
ToolTask.cs (1)
746proc.StartInfo = GetProcessStartInfo(pathToTool, commandLineCommands, responseFileSwitch);
Microsoft.Build.Utilities.UnitTests (1)
ToolTask_Tests.cs (1)
87var basePSI = base.GetProcessStartInfo(pathToTool, commandLineCommands, responseFileSwitch);
Microsoft.NET.Build.Containers (1)
Tasks\CreateNewImageToolTask.cs (1)
76ProcessStartInfo startInfo = base.GetProcessStartInfo(pathToTool, commandLineCommands, responseFileSwitch)!;
sdk-tasks (1)
DotNetTool.cs (1)
22var psi = base.GetProcessStartInfo(pathToTool, commandLineCommands, responseFileSwitch);