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

This commit is contained in:
MattMo 2024-09-11 18:37:36 -07:00
parent a5fa55e3e9
commit c6e7e50322
3 changed files with 17 additions and 6 deletions

View File

@ -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?");

View File

@ -15,7 +15,7 @@
<PackageTags>MontoyaTech;Process.Net</PackageTags>
<AssemblyName>MontoyaTech.Process.Net</AssemblyName>
<RootNamespace>MontoyaTech.Process.Net</RootNamespace>
<Version>1.0.1</Version>
<Version>1.0.2</Version>
<Company>MontoyaTech</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>

View File

@ -406,14 +406,27 @@ namespace MontoyaTech.Process.Net
/// <param name="creationFlags">If supplied this overrides all the creation flags for the process. Default is null.</param>
/// <returns></returns>
/// <exception cref="Exception"></exception>
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;
}
}
}