You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: netstandard20 support with smaller surface area of change
* chore: Remove unnecessary dependency since the frameworks include it
* feat: Allow tests to run on net481 on windows machines for local testing to validate netstandard20
* chore: Update documentation
* chore: dotnet format
* chore: Remove unused constant added in testing
* Update src/ToonFormat/Internal/Decode/Scanner.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update tests/ToonFormat.Tests/ToonFormat.Tests.csproj
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update src/ToonFormat/System.Runtime.CompilerServices/CompilerFeatureRequiredAttribute.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update src/ToonFormat/System.Runtime.CompilerServices/RequiredMemberAttribute.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update src/ToonFormat/System.Runtime.CompilerServices/CompilerFeatureRequiredAttribute.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* fix: Update CompilerFeatureRequiredAttribute to have xml documentation
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
**Token-Oriented Object Notation** is a compact, human-readable encoding of the JSON data model that minimizes tokens and makes structure easy for models to follow. Combines YAML-like indentation with CSV-like tabular arrays. Fully compatible with the [official TOON specification v3.0](https://github.com/toon-format/spec).
8
9
9
-
**Key Features:** Minimal syntax • TOON Encoding and Decoding • Tabular arrays for uniform data • Path expansion • Strict mode validation • .NET 8.0, 9.0 and 10.0 • 520+ tests with 99.7% spec coverage.
10
+
**Key Features:** Minimal syntax • TOON Encoding and Decoding • Tabular arrays for uniform data • Path expansion • Strict mode validation • .NET Standard, .NET 8.0, 9.0 and 10.0 • 520+ tests with 99.7% spec coverage.
10
11
11
12
## Quick Start
12
13
@@ -253,7 +254,7 @@ This implementation:
253
254
- Supports all TOON v3.0 features
254
255
- Handles all edge cases and strict mode validations
255
256
- Fully documented with XML comments
256
-
- Production-ready for .NET 8.0, .NET 9.0 and .NET 10.0
257
+
- Production-ready for .NET Standard 2.0, .NET 8.0, .NET 9.0 and .NET 10.0
257
258
258
259
See [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines.
0 commit comments