Show/hide folder structure
.
├── .github
│ ├── scripts
│ └── workflows
├── Devantler.AgeCLI
│ └── runtimes
│ ├── linux-arm64
│ │ └── native
│ ├── linux-x64
│ │ └── native
│ ├── osx-arm64
│ │ └── native
│ ├── osx-x64
│ │ └── native
│ └── win-x64
│ └── native
└── Devantler.AgeCLI.Tests
└── AgeKeygenTests
18 directories
A simple .NET library that embeds the Age CLI.
To get started, you can install the package from NuGet.
dotnet add package Devantler.AgeCLI
Note
The library currently only supports the age-keygen
binary commands. The age
binary commands are yet to be implemented.
using Devantler.AgeCLI;
var (exitCode, output) = await AgeKeygen.RunAsync(["arg1", "arg2"]);