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;
}
}
}