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