Bump newtonsoft.json to 13.0.1 (#2012)

This commit is contained in:
Tingluo Huang
2022-07-22 11:21:04 -04:00
committed by GitHub
parent e646b6fec4
commit 3567c042ea
5 changed files with 6 additions and 5 deletions

View File

@@ -2,6 +2,7 @@
using System.Linq;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Serialization;
namespace GitHub.Actions.Pipelines.WebApi
{
@@ -9,7 +10,7 @@ namespace GitHub.Actions.Pipelines.WebApi
{
public UnknownEnumJsonConverter()
{
this.CamelCaseText = true;
this.NamingStrategy = new CamelCaseNamingStrategy();
}
public override bool CanConvert(Type objectType)