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