|
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Text.Json;
using NuGet.Shared;
namespace NuGet.ProjectModel
{
/// <summary>
/// A <see cref="IUtf8JsonStreamReaderConverter{T}"/> to allow reading JSON into <see cref="ProjectFileDependencyGroup"/>
/// </summary>
/// <example>
/// "net45": [
/// "Json.Parser (>= 1.0.1)",
/// ]
/// </example>
internal class Utf8JsonStreamProjectFileDependencyGroupConverter : IUtf8JsonStreamReaderConverter<ProjectFileDependencyGroup>
{
public ProjectFileDependencyGroup Read(ref Utf8JsonStreamReader reader)
{
if (reader.TokenType != JsonTokenType.PropertyName)
{
throw new JsonException("Expected PropertyName, found " + reader.TokenType);
}
var frameworkName = reader.GetString();
reader.Read();
var dependencies = reader.ReadStringArrayAsIList() ?? Array.Empty<string>();
return new ProjectFileDependencyGroup(frameworkName, dependencies);
}
}
}
|