A simple .NET library that embeds the SOPS CLI.
- .NET 9.0 or later
- SOPS CLI installed and available in your system's PATH
To get started, you can install the package from NuGet.
dotnet add package DevantlerTech.SOPSCLI
You can execute the SOPS CLI commands using the SOPS
class.
using DevantlerTech.SOPSCLI;
var (exitCode, output) = await SOPS.RunAsync(["arg1", "arg2"]);