DartLang.PubSpec.Serialization.Json 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package DartLang.PubSpec.Serialization.Json --version 2.0.0                
NuGet\Install-Package DartLang.PubSpec.Serialization.Json -Version 2.0.0                
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="DartLang.PubSpec.Serialization.Json" Version="2.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DartLang.PubSpec.Serialization.Json --version 2.0.0                
#r "nuget: DartLang.PubSpec.Serialization.Json, 2.0.0"                
#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.
// Install DartLang.PubSpec.Serialization.Json as a Cake Addin
#addin nuget:?package=DartLang.PubSpec.Serialization.Json&version=2.0.0

// Install DartLang.PubSpec.Serialization.Json as a Cake Tool
#tool nuget:?package=DartLang.PubSpec.Serialization.Json&version=2.0.0                

DartLang.PubSpec

A library to serialize and deserialize Dart pubspec.yaml files.

Usage

var yaml = File.ReadAllText("pubspec.yaml");
var pubspec = PubSpecYamlSerializer.Deserialize(yaml);

Console.WriteLine($"Name: {pubspec.Name}");
Console.WriteLine($"Version: {pubspec.Version}");

You can also use the JSON serializer:

var json = File.ReadAllText("pubspec.json");
var pubspec = PubSpecJsonSerializer.Deserialize(json);

Custom Deserializer

YAML

You can also build your own deserializer using YamlDotNet directly:

var deserializer = new DeserializerBuilder()
    .IgnoreUnmatchedProperties()                                // pub.dev will ignore other properties
    .WithNamingConvention(UnderscoredNamingConvention.Instance) // dart uses underscores for properties
    .WithPubSpecConverters()                                    // converters for custom types
    .Build();

return deserializer.Deserialize<PubSpec>(reader);
JSON

In case you need to use custom JsonSerializerOptions, you can reuse the converters from DartLang.PubSpec.Serialization.Json:

var json = File.ReadAllText("pubspec.json");
var options = new JsonSerializerOptions
{
    PropertyNameCaseInsensitive = true,
    PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
    Converters =
    {
        new SemVersionJsonConverter(),
        new SemVersionRangeJsonConverter(),
        new DependencyMapJsonConverter(),
        new PlatformsJsonConverter(),
    },
};

return JsonSerializer.Deserialize<PubSpec>(json, options);

Serialization

Serialization is currently not supported, but should not be hard to implement yourself.

License

MIT

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1 125 11/7/2024
3.0.0 71 11/7/2024
2.0.0 173 10/15/2024

# Unreleased
* Split de-/serialization for YAML into a separate package: `DartLang.PubSpec.Serialization.Yaml`
* Added support for deserializing JSON files using `DartLang.PubSpec.Serialization.Json`
# 1.1.0
* Upgraded to YamlDotNet 16.1.3
# 1.0.0
* Initial release 🎉
* Support for deserializing pubspec.yaml files using `PubSpec.Deserialize(String yaml)` and `PubSpec.Deserialize(StringReader reader)`.
* You can also build your own deserializer using:
```csharp
var deserializer = new DeserializerBuilder()
.IgnoreUnmatchedProperties()                                // pub.dev will ignore other properties
.WithNamingConvention(UnderscoredNamingConvention.Instance) // convention
.WithPubSpecConverters()                                    // converters for custom types
.Build();
return deserializer.Deserialize<PubSpec>(reader);
```