I'm trying to start a process using the following code :
Process.Start(new ProcessStartInfo()
{
FileName = $"{Environment.CurrentDirectory}\\file.exe"
});
The process starts as it should be. However, when I look at the task manager, I see this:
.
Is there any way to start the process without attaching it to the current one?
Thanks in advance, Lior.