From c6e7e503223548526b4f4308a718d053840ef966 Mon Sep 17 00:00:00 2001 From: MattMo Date: Wed, 11 Sep 2024 18:37:36 -0700 Subject: [PATCH] Renamed Create to Start to match Process.Start and added a Start function to accept and existing process instead of having a new one be created. Bumped package version to 1.0.2 --- Process.Net.Example/Program.cs | 2 +- Process.Net/Process.Net.csproj | 2 +- Process.Net/WinProcess.cs | 19 +++++++++++++++---- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/Process.Net.Example/Program.cs b/Process.Net.Example/Program.cs index 59fa9a5..cdf1c06 100644 --- a/Process.Net.Example/Program.cs +++ b/Process.Net.Example/Program.cs @@ -15,7 +15,7 @@ namespace MontoyaTech.Process.Net.Example RedirectStandardInput = true, }; - var process = WinProcess.Create(startInfo, creationFlags: WinProcess.CreationFlags.CREATE_NEW_CONSOLE); + var process = WinProcess.Start(startInfo, creationFlags: WinProcess.CreationFlags.CREATE_NEW_CONSOLE); process.StandardInput.WriteLine("This is a test"); process.StandardInput.WriteLine("Does this work?"); diff --git a/Process.Net/Process.Net.csproj b/Process.Net/Process.Net.csproj index f18ab48..2079958 100644 --- a/Process.Net/Process.Net.csproj +++ b/Process.Net/Process.Net.csproj @@ -15,7 +15,7 @@ MontoyaTech;Process.Net MontoyaTech.Process.Net MontoyaTech.Process.Net - 1.0.1 + 1.0.2 MontoyaTech MIT README.md diff --git a/Process.Net/WinProcess.cs b/Process.Net/WinProcess.cs index 7fff692..8f02cb2 100644 --- a/Process.Net/WinProcess.cs +++ b/Process.Net/WinProcess.cs @@ -406,14 +406,27 @@ namespace MontoyaTech.Process.Net /// If supplied this overrides all the creation flags for the process. Default is null. /// /// - public unsafe static System.Diagnostics.Process Create(System.Diagnostics.ProcessStartInfo startInfo, StartupFlags? startupFlags = null, CreationFlags? creationFlags = null) + public unsafe static System.Diagnostics.Process Start(System.Diagnostics.ProcessStartInfo startInfo, StartupFlags? startupFlags = null, CreationFlags? creationFlags = null) { if (startInfo == null) throw new ArgumentNullException(nameof(startInfo)); var process = new System.Diagnostics.Process(); + process.StartInfo = startInfo; + Start(process, startupFlags, creationFlags); + + return process; + } + + public unsafe static void Start(System.Diagnostics.Process process, StartupFlags? startupFlags = null, CreationFlags? creationFlags = null) + { + var startInfo = process.StartInfo; + + if (startInfo == null) + throw new InvalidOperationException("Process.StartInfo cannot be null."); + var processType = process.GetType(); var commandLine = new StringBuilder(); @@ -551,11 +564,9 @@ namespace MontoyaTech.Process.Net if (startInfo.RedirectStandardError) { var reader = new StreamReader(new FileStream(parentErrorHandle, FileAccess.Read, 4096, false), startInfo.StandardErrorEncoding ?? GetEncoding(GetConsoleOutputCP()), true, 4096); - + processType.GetField("_standardError", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance).SetValue(process, reader); } - - return process; } } }