bbc 0.2.4

Suggested Alternatives

bond-tools

Additional Details

This package has been renamed to bond-tools

dotnet tool install --global bbc --version 0.2.4
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local bbc --version 0.2.4
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=bbc&version=0.2.4
                    
nuke :add-package bbc --version 0.2.4
                    

Bond Breaking Changes

A .NET implementation of the Bond IDL compiler and toolchain.

Quick Start

make install

Once installed, use the bbc command:

bbc parse schema.bond
bbc breaking schema.bond --against .git#branch=main --error-format=json
bbc breaking examples/catalog_v2.bond --against examples/catalog_v1.bond --error-format=json | jq .
bbc breaking schema.bond --against .git#branch=main --ignore-imports
bbc format schema.bond
bbc format schema.bond --check

Pre-commit hook example (format check for staged .bond files):

#!/usr/bin/env bash
set -euo pipefail

files=$(git diff --cached --name-only --diff-filter=ACM | grep -E '\.bond$' || true)
if [ -z "$files" ]; then
  exit 0
fi

for f in $files; do
  bbc format "$f" --check
done

PowerShell variant:

$files = git diff --cached --name-only --diff-filter=ACM | Where-Object { $_ -match '\.bond$' }
if (-not $files) { exit 0 }
foreach ($f in $files) {
  bbc format $f --check
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
0.2.4 122 2/10/2026 0.2.4 is deprecated.
0.2.3 122 2/10/2026 0.2.3 is deprecated.
0.2.0 131 2/8/2026 0.2.0 is deprecated.