A simple .NET library that embeds the Age CLI.
- .NET 9.0 or later
- Age CLI installed and available in your system's PATH
To get started, you can install the package from NuGet.
dotnet add package DevantlerTech.AgeCLI
Note
The library currently only supports the age-keygen
binary commands. The age
binary commands are yet to be implemented.
using DevantlerTech.AgeCLI;
var (exitCode, output) = await AgeKeygen.RunAsync(["arg1", "arg2"]);