Show/hide folder structure
.
├── .github
│ ├── scripts
│ └── workflows
├── Devantler.K3dCLI
│ └── runtimes
│ ├── linux-arm64
│ │ └── native
│ ├── linux-x64
│ │ └── native
│ ├── osx-arm64
│ │ └── native
│ ├── osx-x64
│ │ └── native
│ └── win-x64
│ └── native
└── Devantler.K3dCLI.Tests
└── K3dTests
18 directories
A simple .NET library that embeds the K3d CLI.
To get started, you can install the package from NuGet.
dotnet add package Devantler.K3dCLI
You can execute the K3d CLI commands using the K3d
class.
using Devantler.K3dCLI;
var (exitCode, output) = await K3d.RunAsync(["arg1", "arg2"]);