EinsTools.Utilities.ProcessLib
0.0.3-rc.1
See the version list below for details.
dotnet add package EinsTools.Utilities.ProcessLib --version 0.0.3-rc.1
NuGet\Install-Package EinsTools.Utilities.ProcessLib -Version 0.0.3-rc.1
<PackageReference Include="EinsTools.Utilities.ProcessLib" Version="0.0.3-rc.1" />
paket add EinsTools.Utilities.ProcessLib --version 0.0.3-rc.1
#r "nuget: EinsTools.Utilities.ProcessLib, 0.0.3-rc.1"
// Install EinsTools.Utilities.ProcessLib as a Cake Addin #addin nuget:?package=EinsTools.Utilities.ProcessLib&version=0.0.3-rc.1&prerelease // Install EinsTools.Utilities.ProcessLib as a Cake Tool #tool nuget:?package=EinsTools.Utilities.ProcessLib&version=0.0.3-rc.1&prerelease
ProcessLib
Description
This library contains functions that ease the process of running external programs from within a .Net application.
Usage
You create a new instance of the ExternalApplication class, using the Create method.
var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue);
In this case the application is created with the executable and two command line arguments. You can then use the members of the ExternalApplication class to set more parameters, such as the working directory.
app = app.In("C:\\MyApp");
You can then run the application using the Execute method.
var exitCode = await app.Execute();
The Execute method returns a Task<int> that represents the exit code of the application.
ExternalApplication Members
Create
There are two overloads of the Create method. The first takes the executable name and a params array of command line arguments. The second takes an array of strings of the command line arguments.
var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue);
var app = ExternalApplication.Create("MyApp.exe", new string[] { "-c", "OptionValue" }, workingDirectory: "C:\\MyApp");
In
In sets the working directory of the application.
var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue)
.In("C:\\MyApp");
OutputTo
OutputTo sets the action that the application's standard output will be written to.
var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue)
.OutputTo(Console.Out);
ErrorTo
ErrorTo sets the action that the application's standard error will be written to.
var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue)
.ErrorTo(Console.Error);
ThrowOnError
ThrowOnError sets a function that will be called with the exit code of the application. If the function returns true, the execution of the application will succeed. If the function returns false, an exception will be thrown.
var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue)
.ThrowOnError(n => n < 5);
AddArguments
AddArguments adds command line arguments to the application.
var app = ExternalApplication.Create("MyApp.exe")
.AddArguments("-d", "OptionValue");
ReplaceArguments
ReplaceArguments replaces the command line arguments of the application.
var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue)
.AddArguments("-c", "OptionValue1")
.ReplaceArguments("-d", "OptionValue");
In this example, the command line arguments will be "-d", "OptionValue". All arguments added before are replaced.
Execute
Execute runs the application and returns a Task<int> that represents the exit code of the application.
var exitCode = await app.Execute();
ExecuteWithResult
ExecuteWithResult runs the application and returns a Task<ExternalApplicationResult> that represents the result of the application, including the exit code and both stdout and stderr output.
var result = await app.ExecuteWithResult();
Console.WriteLine($"Exit code: {result.ExitCode}");
Console.WriteLine($"Stdout: {result.Stdout}");
Console.WriteLine($"Stderr: {result.Stderr}");
WithWindowStyle
WithWindowStyle sets the window style of the application. Possible values for the ProcessWindowStyle enum are ProcessWindowStyle.Hidden, ProcessWindowStyle.Maximized, ProcessWindowStyle.Minimized and ProcessWindowStyle.Normal.
var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue)
.WithWindowStyle(ProcessWindowStyle.Hidden);
ShowWindow
ShowWindow sets the window style of the application to ProcessWindowStyle.Normal.
var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue)
.ShowWindow();
HideWindow
HideWindow sets the window style of the application to ProcessWindowStyle.Hidden.
var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue)
.HideWindow();
MaximizeWindow
MaximizeWindow sets the window style of the application to ProcessWindowStyle.Maximized.
var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue)
.MaximizeWindow();
MinimizeWindow
MinimizeWindow sets the window style of the application to ProcessWindowStyle.Minimized.
var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue)
.MinimizeWindow();
Sample
using System;
using System.Threading.Tasks;
using EinsTools.Utilities.ProcessLib;
var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue)
.In("/var/myapp")
.OutputTo(Console.Out)
.ErrorTo(Console.Error)
.ThrowOnError(n => n < 5);
var exitCode = await app.Execute();
License
This library is licensed under the BSD 3-Clause License. See the LICENSE file for details.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.0.3-rc.5 | 98 | 8/25/2023 |
0.0.3-rc.4 | 78 | 8/24/2023 |
0.0.3-rc.3 | 85 | 8/24/2023 |
0.0.3-rc.2 | 77 | 8/23/2023 |
0.0.3-rc.1 | 76 | 8/23/2023 |
0.0.3-rc.0 | 79 | 8/23/2023 |