erionpc

Results 3 comments of erionpc

I'm using Microsoft.AspNetCore.Mvc.NewtonsoftJson 6.0.2 in a .NET 6.0 web-api project. The project references Microsoft.AspNetCore.OData and enables oData queries on HTTP Get controller actions. ```c# services.AddControllersWithViews(o => { o.UseGeneralRoutePrefix("api/v{version:apiVersion}"); }) .AddNewtonsoftJson()...

I had the same problem, and I found a very easy solution, which does the job. Just add this to config. ``` "Logging": { "LogLevel": { "Microsoft.IdentityModel.Logging": "None" } }...

It seems that there is a "magic string" in play here. The setting name which defines the service bus namespace: 1. MUST NOT be a nested setting (i.e. must not...