I have a project that calls the exe
of the other but, I want to be able to step through both projects calling from the parent project to the child project.
I'm running VS 2012 with C#. I can open my parent project and add my 2nd solution. I can set either one as the start up project. The 1st project calls the exe of the child currently. So, somehow, I need it to call the project so I can debug it.
How do I do that?
Console.WriteLine("Setting up the StartInfo object for the ReportRunner.exe process run");
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = @"C:\Documents\Dev\C#\ReportRunnerXLSX\ReportRunner\bin\Release\PortalReportRunner.exe";
startInfo.UseShellExecute = true;
startInfo.Arguments = argies.ToString();
using (Process proc = Process.Start(startInfo))
{
proc.WaitForExit();
}