SimpleExec 9.0.0-rc.4

This is a prerelease version of SimpleExec.
There is a newer version of this package available.
See the version list below for details.
dotnet add package SimpleExec --version 9.0.0-rc.4
                    
NuGet\Install-Package SimpleExec -Version 9.0.0-rc.4
                    
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="SimpleExec" Version="9.0.0-rc.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SimpleExec" Version="9.0.0-rc.4" />
                    
Directory.Packages.props
<PackageReference Include="SimpleExec" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SimpleExec --version 9.0.0-rc.4
                    
#r "nuget: SimpleExec, 9.0.0-rc.4"
                    
#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.
#:package SimpleExec@9.0.0-rc.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SimpleExec&version=9.0.0-rc.4&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=SimpleExec&version=9.0.0-rc.4&prerelease
                    
Install as a Cake Tool

SimpleExec

SimpleExec

NuGet version

Build status CodeQL analysis Lint Spell check

SimpleExec is a .NET library that runs external commands. It wraps System.Diagnostics.Process to make things easier.

SimpleExec intentionally does not invoke the system shell.

By default, the command is echoed to standard error (stderr) for visibility.

Platform support: .NET Standard 2.1 and later.

Quick start

using static SimpleExec.Command;
Run("foo.exe", "arg1 arg2");

API

Run

Run("foo.exe");
Run("foo.exe", "arg1 arg2", "my-working-directory");

await RunAsync("foo.exe");
await RunAsync("foo.exe", "arg1 arg2", "my-working-directory");

Read

var (standardOutput1, standardError1) = await ReadAsync("foo.exe");
var (standardOutput2, standardError2) = await ReadAsync("foo.exe", "arg1 arg2", "my-working-directory");

Other optional arguments

bool noEcho = false,
string? windowsName = null,
string? windowsArgs = null,
string? echoPrefix = null,
Action<IDictionary<string, string>>? configureEnvironment = null,
bool createNoWindow = false,
Func<int, bool>? handleExitCode = null,
CancellationToken cancellationToken = default,

Exceptions

If the command has a non-zero exit code, an ExitCodeException is thrown with an int ExitCode property and a message in the form of:

$"The process exited with code {ExitCode}."

In the case of ReadAsync, an ExitCodeReadException is thrown, which inherits from ExitCodeException, and has string Out and Error properties, representing standard out (stdout) and standard error (stderr), and a message in the form of:

$@"The process exited with code {ExitCode}.

Standard Output:

{Out}

Standard Error:

{Error}"
Overriding default exit code handling

The throwing of exceptions for specific non-zero exit codes can be suppressed by passing a delegate to handleExitCode which returns true when it has handled the exit code and default exit code handling should be suppressed, and returns false otherwise. For example:

Run("ROBOCOPY", "from to", handleExitCode: code => code < 8);

Note that it may be useful to record the exit code. For example:

var exitCode = 0;
var result = Run("ROBOCOPY", "from to", handleExitCode: code => (exitCode = code) < 8);

// see https://ss64.com/nt/robocopy-exit.html
var oneOrMoreFilesCopied = exitCode & 1;
var extraFilesOrDirectoriesDetected = exitCode & 2;
var misMatchedFilesOrDirectoriesDetected = exitCode & 4;

Windows

🙄

Sometimes, for whatever wonderful reasons, it's necessary to run a different command on Windows. For example, when running Yarn, some combination of mysterious factors may require that you explicitly run cmd.exe with Yarn as an argument, rather than running Yarn directly. The optional windowsNames and windowsArgs parameters may be used to specify a different command name and arguments for Windows:

Run("yarn", windowsName: "cmd", windowsArgs: "/c yarn");

<sub>Run by Gregor Cresnar from the Noun Project.</sub>

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • No dependencies.

NuGet packages (13)

Showing the top 5 NuGet packages that depend on SimpleExec:

Package Downloads
Vertiq.Testing.XUnit

A highly modular framework for writing Blazor applications with a hassle-free, vertical-sliced architecture - Easy. Flexible. Focused.

Dex.IdentityServer4

OpenID Connect and OAuth 2.0 Framework for ASP.NET Core

Xenial.Beer

Beer - Delicious dotnet build tools

ILVerifier

A simple helper library to access provider-specific types when working with IDbConnection and friends.

EasyBuild.Tools

Package Description

GitHub repositories (40)

Showing the top 20 popular GitHub repositories that depend on SimpleExec:

Repository Stars
xunit/xunit
xUnit.net is a free, open source, community-focused unit testing tool for .NET.
aaubry/YamlDotNet
YamlDotNet is a .NET library for YAML
adamhathcock/sharpcompress
SharpCompress is a fully managed C# library to deal with many compression types and formats.
AppMetrics/AppMetrics
App Metrics is an open-source and cross-platform .NET library used to record and report metrics within an application.
gothinkster/aspnetcore-realworld-example-app
ASP.NET Core backend implementation for RealWorld
FakeItEasy/FakeItEasy
The easy mocking library for .NET
ProxyKit/ProxyKit
A toolkit to create code-first HTTP reverse proxies on ASP.NET Core
DuendeArchive/IdentityModel
.NET standard helper library for claims-based identity, OAuth 2.0 and OpenID Connect.
adamralph/minver
🏷 Minimalistic versioning using Git tags.
machine/machine.specifications
Machine.Specifications is a Context/Specification framework for .NET that removes language noise and simplifies tests.
dotnet/dotnet
Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK.
DuendeArchive/IdentityModel.OidcClient
Certified C#/NetStandard OpenID Connect Client Library for native mobile/desktop Applications (RFC 8252)
JasperFx/lamar
Fast Inversion of Control Tool and Successor to StructureMap
Particular/Workshop
SOA Done Right
spectresystems/snitch
A tool that help you find duplicate transitive package references.
SQLStreamStore/SQLStreamStore
Stream Store library targeting RDBMS based implementations for .NET
XamlAnimatedGif/XamlAnimatedGif
A simple library to display animated GIF images in WPF apps (.NET Framework 4.5, .NET Core 3.1, .NET 5.0)
config-r/config-r
Write your .NET configuration files in C#
JasperFx/jasper
Next generation application development framework for .Net
adamralph/xbehave.net
✖ An xUnit.net extension for describing each step in a test with natural language.
Version Downloads Last Updated
12.0.0 655,748 1/15/2024
12.0.0-rc.1 432 12/25/2023
12.0.0-beta.1 277 12/24/2023
12.0.0-alpha.1 2,028 6/9/2023
11.0.0 521,667 8/21/2022
11.0.0-rc.1 666 7/22/2022
10.0.0 172,987 3/26/2022
10.0.0-beta.2 21,044 3/20/2022
10.0.0-beta.1 306 3/19/2022
9.1.0 16,981 3/19/2022
9.1.0-rc.1 281 3/13/2022
9.1.0-alpha.1 295 3/12/2022
9.0.0 4,686 3/12/2022
9.0.0-rc.4 1,307 2/26/2022
9.0.0-rc.3 10,161 12/30/2021
9.0.0-rc.2 338 12/23/2021
9.0.0-rc.1 249 12/23/2021
9.0.0-alpha.1 25,161 8/22/2021
8.0.0 711,886 7/5/2021
8.0.0-rc.1 531 6/26/2021
8.0.0-alpha.8 283 6/20/2021
8.0.0-alpha.7 255 6/19/2021
8.0.0-alpha.6 282 6/19/2021
8.0.0-alpha.5 281 6/19/2021
8.0.0-alpha.4 312 6/19/2021
8.0.0-alpha.3 1,002 6/13/2021
8.0.0-alpha.2 472 6/12/2021
8.0.0-alpha.1 316 6/12/2021
7.0.0 75,237 3/14/2021
7.0.0-alpha.2 392 3/13/2021
7.0.0-alpha.1 4,499 12/20/2020
6.4.0 74,795 12/20/2020
6.4.0-rc.1 1,630 12/5/2020
6.3.0 46,290 10/26/2020
6.2.0 308,930 12/21/2019
6.2.0-rc.1 1,419 12/15/2019
6.1.0 65,422 10/13/2019
6.1.0-rc.1 1,640 9/8/2019
6.1.0-beta.1 873 8/27/2019
6.0.0 56,434 7/13/2019
6.0.0-rc.1 435 6/27/2019
6.0.0-beta.1 686 6/12/2019
6.0.0-alpha.1 470 6/1/2019
5.0.1 20,356 2/10/2019
5.0.1-rc.1 626 2/10/2019
5.0.0 384 2/9/2019
5.0.0-beta.1 972 2/5/2019
5.0.0-alpha.2 364 2/4/2019
5.0.0-alpha.1 659 1/3/2019
4.2.0 18,041 12/8/2018
4.1.0 2,362 12/2/2018
4.0.0 410 11/27/2018
4.0.0-rc.1 443 11/26/2018
4.0.0-beta.1 750 11/20/2018
3.0.0 23,537 9/20/2018
2.3.0 2,496 8/25/2018
2.3.0-beta.1 495 8/11/2018
2.2.0 1,992 6/26/2018
2.1.0 1,726 5/20/2018
2.0.0 1,741 11/12/2017
1.0.0 5,888 11/5/2017