using Microsoft.Extensions.DependencyInjection; using Volo.Abp.Json; namespace Volo.Abp.FeatureManagement; public class SystemTextJsonStringValueJsonConverter_Tests : StringValueJsonConverter_Tests { protected override void AfterAddApplication(IServiceCollection services) { services.PreConfigure(options => { options.UseHybridSerializer = true; }); } }