File: TestJsonSerializerOptionsProvider.cs | Web Access |
Project: src\src\Components\test\testassets\BasicTestApp\BasicTestApp.csproj (BasicTestApp) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Text.Json; namespace BasicTestApp; internal static class TestJsonSerializerOptionsProvider { public static JsonSerializerOptions Options { get; } = new JsonSerializerOptions { PropertyNamingPolicy = JsonNamingPolicy.CamelCase, PropertyNameCaseInsensitive = true, }; } |