EinsTools.Utilities.ProcessLib 0.0.3-rc.5

This is a prerelease version of EinsTools.Utilities.ProcessLib.
dotnet add package EinsTools.Utilities.ProcessLib --version 0.0.3-rc.5
NuGet\Install-Package EinsTools.Utilities.ProcessLib -Version 0.0.3-rc.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EinsTools.Utilities.ProcessLib" Version="0.0.3-rc.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EinsTools.Utilities.ProcessLib --version 0.0.3-rc.5
#r "nuget: EinsTools.Utilities.ProcessLib, 0.0.3-rc.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EinsTools.Utilities.ProcessLib as a Cake Addin
#addin nuget:?package=EinsTools.Utilities.ProcessLib&version=0.0.3-rc.5&prerelease

// Install EinsTools.Utilities.ProcessLib as a Cake Tool
#tool nuget:?package=EinsTools.Utilities.ProcessLib&version=0.0.3-rc.5&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.WriteLine);

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.WriteLine);

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

There is an overload of ThrowOnError that takes a range value. If the exit code of the application is within the range, the execution of the application will succeed. If the exit code is outside the range, an exception will be thrown.

var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue")
    .ThrowOnError(0..5);

Please note that the range is inclusive. In the example the exit code must be >= 0 and ⇐ 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.

The default value is ProcessWindowStyle.Hidden.

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();

Restrictions

If you rediect stdout or stderr, the MaximizeWindow, MinimizeWindow and ShowWindow methods will not work.

Sample

using System;
using System.Threading.Tasks;
using EinsTools.Utilities.ProcessLib;

var app = ExternalApplication.Create("MyApp.exe", "-c", "OptionValue")
    .In("/var/myapp")
    .OutputTo(Console.WriteLine)
    .ErrorTo(Console.Error.WriteLine)
    .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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • 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 86 8/25/2023
0.0.3-rc.4 68 8/24/2023
0.0.3-rc.3 76 8/24/2023
0.0.3-rc.2 68 8/23/2023
0.0.3-rc.1 65 8/23/2023
0.0.3-rc.0 69 8/23/2023

Version 0.0.3
- Added build process
- Added the methods WithWindowStyle, ShowWindow, HideWindow, MaximizeWindow and MinimizeWindow
- Added ThrowOnError with range argument