SignalCandy.Core
0.2.1
dotnet add package SignalCandy.Core --version 0.2.1
NuGet\Install-Package SignalCandy.Core -Version 0.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SignalCandy.Core" Version="0.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SignalCandy.Core" Version="0.2.1" />
<PackageReference Include="SignalCandy.Core" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SignalCandy.Core --version 0.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SignalCandy.Core, 0.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package SignalCandy.Core@0.2.1
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SignalCandy.Core&version=0.2.1
#tool nuget:?package=SignalCandy.Core&version=0.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
SignalCandy.Core
Core library for SignalCandy: parse DBC files, validate config, and generate C99 encode/decode code.
- Repo: https://github.com/InitusNovus/Signal-CANdy
- License: MIT
Install
dotnet add package SignalCandy.Core --version 0.2.1
Quick start (F#)
open Signal.CANdy.Core
let dbcPath = "examples/sample.dbc"
let outDir = "gen"
match Api.parseDbc dbcPath with
| Ok ir ->
match Api.generateCode(ir, outDir, Config.defaults) with
| Ok files -> printfn "Generated: headers=%d sources=%d others=%d" (List.length files.Headers) (List.length files.Sources) (List.length files.Others)
| Error e -> printfn "CodeGen error: %A" e
| Error e -> printfn "Parse error: %A" e
Or use the higher-level path-based API (loads optional YAML config):
open System.Threading.Tasks
open Signal.CANdy.Core
let run () : Task = task {
let! result = Api.generateFromPaths("examples/sample.dbc", "gen", None)
match result with
| Ok files -> printfn "OK: %A" files
| Error e -> printfn "Error: %A" e
}
What's inside
- DBC parsing with validations (duplicate IDs, overlaps, DLC bounds)
- YAML config loader/validator (YamlDotNet)
- C99 codegen (headers/sources + registry/utils)
- Result-based API with discriminated union errors
Product | Versions 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.
-
net8.0
- DbcParserLib (>= 1.7.0)
- FSharp.Core (>= 8.0.403)
- YamlDotNet (>= 16.3.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on SignalCandy.Core:
Package | Downloads |
---|---|
SignalCandy
C#-friendly facade for SignalCandy Core, wrapping Result with exceptions. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
0.2.1 | 30 | 8/27/2025 |