Yaml2Doc.Core
1.0.0
See the version list below for details.
dotnet add package Yaml2Doc.Core --version 1.0.0
NuGet\Install-Package Yaml2Doc.Core -Version 1.0.0
<PackageReference Include="Yaml2Doc.Core" Version="1.0.0" />
<PackageVersion Include="Yaml2Doc.Core" Version="1.0.0" />
<PackageReference Include="Yaml2Doc.Core" />
paket add Yaml2Doc.Core --version 1.0.0
#r "nuget: Yaml2Doc.Core, 1.0.0"
#:package Yaml2Doc.Core@1.0.0
#addin nuget:?package=Yaml2Doc.Core&version=1.0.0
#tool nuget:?package=Yaml2Doc.Core&version=1.0.0
Yaml2Doc.Core
Yaml2Doc.Core is the core library behind Yaml2Doc. It provides:
- A neutral in-memory model (
PipelineDocument) for generic YAML. - A Standard YAML dialect (
StandardYamlDialect) that treats input as plain YAML (no CI/CD semantics). - Loading and parsing helpers (
YamlDocumentContext,YamlLoader). - A simple dialect registry for selecting how YAML should be interpreted.
Use this package if you want to integrate Yaml2Doc�s core parsing and modeling into your own tools or renderers.
Installation
dotnet add package Yaml2Doc.Core
Basic usage
The typical flow is:
- Load a YAML document into a
YamlDocumentContext. - Use the dialect registry to resolve the Standard YAML dialect.
- Parse into a
PipelineDocument.
using System.IO;
using Yaml2Doc.Core.Dialects;
using Yaml2Doc.Core.Engine;
using Yaml2Doc.Core.Models;
using Yaml2Doc.Core.Parsing;
// Load YAML text
var yamlText = File.ReadAllText("pipeline.yml");
// Create a document context
var context = YamlDocumentContext.FromString(yamlText);
// Set up loader and dialect
var loader = new YamlLoader();
var standardDialect = new StandardYamlDialect(loader);
// Register dialect(s)
var registry = new Yaml2DocRegistry(new[] { standardDialect });
// Resolve the dialect for this document
var dialect = registry.ResolveDialect(context);
// Parse into the neutral model
PipelineDocument document = dialect.Parse(context);
// You now have a PipelineDocument with Name + Root keys
PipelineDocument is intentionally minimal for v1: it exposes a document Name (if present) and a Root dictionary representing the top-level YAML mapping.
API documentation
For full type and member details, see:
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. 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. |
-
net9.0
- Xml2Doc.MSBuild (>= 1.4.0-preview.80-g111a6ac)
- YamlDotNet (>= 16.3.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Yaml2Doc.Core:
| Package | Downloads |
|---|---|
|
Yaml2Doc.Markdown
Renderer library that converts the neutral pipeline model into human-friendly Markdown documentation. |
|
|
Yaml2Doc.Cli
Command-line tool that converts YAML pipeline definitions into Markdown documentation. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.1.0 | 189 | 12/4/2025 |
| 1.1.0-preview.26-ga1ebf43 | 157 | 12/4/2025 |
| 1.1.0-preview.25-gc4d1d21 | 155 | 12/4/2025 |
| 1.0.0 | 168 | 12/3/2025 |
| 1.0.0-preview.24-gd822a58 | 160 | 12/3/2025 |
| 1.0.0-preview.23-g2fad194 | 171 | 12/3/2025 |
| 1.0.0-preview.22-gd7f78e2 | 156 | 12/3/2025 |
| 1.0.0-preview.21-g71d2f29 | 149 | 12/3/2025 |
| 1.0.0-preview.20-ga2d3c5e | 160 | 12/3/2025 |