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" />
<PackageReference Include="ProcessSandbox" />
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
#tool nuget:?package=ProcessSandbox&version=0.3.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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.