| | |
| | | { |
| | | services.AddHealthChecks(); |
| | | |
| | | services.AddConfigurableOptions<WxmpOptions>(); |
| | | services.AddConfigurableOptions<AliyunOptions>(); |
| | | |
| | | services.AddComponent<LogServiceComponent>(); |
| | |
| | | options.OperationFilter<CustomOperationIdFilter>(); |
| | | options.SchemaFilter<EnumSchemaFilter>(); |
| | | }); |
| | | services.AddSwaggerGenNewtonsoftSupport(); |
| | | |
| | | services.AddControllers() |
| | | .AddNewtonsoftJson(options => |
| | | { |
| | | options.SerializerSettings.Converters.Add(new EmptyStringToNullConverter()); |
| | | //options.SerializerSettings.Converters.Add(new StringEnumConverter()); |
| | | }) |
| | | .AddFriendlyException() |