This is applicable only for for the Bold Reports® version before 2.3.27. Since, the latest version is not required this setting
We are using Json.NET serializer
for Report Service which has been removed from ASP.NET Core 3.0 shared framework. So, you have to use AddNewtonsoftJson()
with services to works with Json.NET serializer
as per the migration information from .NET Core 3.0
Migrate from ASP.NET Core 2.2 to 3.0
Startup.ConfigureServices
to call AddNewtonsoftJson.public void ConfigureServices(IServiceCollection services)
{
…
…
services.AddNewtonsoftJson();
}