ProcessSandbox 0.3.0

dotnet add package ProcessSandbox --version 0.3.0
                    
NuGet\Install-Package ProcessSandbox -Version 0.3.0
                    
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="ProcessSandbox" Version="0.3.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ProcessSandbox" Version="0.3.0" />
                    
Directory.Packages.props
<PackageReference Include="ProcessSandbox" />
                    
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 ProcessSandbox --version 0.3.0
                    
#r "nuget: ProcessSandbox, 0.3.0"
                    
#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.
#addin nuget:?package=ProcessSandbox&version=0.3.0
                    
Install ProcessSandbox as a Cake Addin
#tool nuget:?package=ProcessSandbox&version=0.3.0
                    
Install ProcessSandbox as a Cake Tool

ProcessSandbox

Provides a simple and lightweight way to run processes with given limits (CPU, RAM, I/O etc).

The library is designed for Linux, nonetheless it can be used on Windows but with some limitations in functionality. For more details see the project repository.

Example

The next example runs a process with CPU and memory limits, and prints the execution statistics afterwards.

var processSandbox = new ProcessSandbox(new ProcessSandboxStartInfo
{
    Command = "my-calc",
    Arguments = [ "1", "+", "2" ],
    CpuLimit = TimeSpan.FromSeconds(1),
    MemoryLimit = 1_000_000
});

var exitCode = await processSandbox.Start();

if (exitCode != 0 && !processSandbox.SelfCompletion)
{
    switch (exitCode)
    {
        case (int)SpecialExitCode.CpuLimit:
            Console.WriteLine("CPU limit exceeded!");
            break;
        case (int)SpecialExitCode.MemoryLimit:
            Console.WriteLine("Memory limit exceeded!");
            break;
        // ...
    }
}

Console.WriteLine("Exit Code          : " + exitCode);
Console.WriteLine("Elapsed Time, ms   : " + processSandbox.ElapsedTime.TotalMilliseconds);
Console.WriteLine("CPU Usage, ms      : " + processSandbox.CpuUsage.TotalMilliseconds);
Console.WriteLine("Memory Usage, bytes: " + processSandbox.MemoryUsage);
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.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.3.0 140 3/12/2025
0.2.0 90 2/20/2025
0.1.0 93 2/19/2025