Installation

Requirements

Install via .NET

The recommended way to install Burner is as a global .NET tool:

dotnet tool install -g Burner-CLI

Verify Installation

burner --version

You should see the version number displayed.

Update

dotnet tool update -g Burner-CLI

Uninstall

dotnet tool uninstall -g Burner-CLI

Build from Source

For development or to get the latest unreleased features:

# Clone the repository
git clone https://github.com/nor0x/burner.git
cd burner
# Build and pack
dotnet pack -c Release
# Install from local package
dotnet tool install -g --add-source ./nupkg Burner-CLI

Next Steps