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