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