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:
parent
a5fa55e3e9
commit
c6e7e50322
@ -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?");
|
||||
|
@ -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>
|
||||
|
@ -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();
|
||||
@ -554,8 +567,6 @@ namespace MontoyaTech.Process.Net
|
||||
|
||||
processType.GetField("_standardError", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance).SetValue(process, reader);
|
||||
}
|
||||
|
||||
return process;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user