Currently migrating my azure function from V2 to V3. My function is broken into the following lines in startup.cs file:
public override void Configure(IFunctionsHostBuilder mybuilder)
{
mybuilder.Services.AddTransient<IConfigureOptions<MvcOptions>, MvcJsonMvcOptionsSetup>();
}
Using.netcore3.1, I have read "functions-versions#breaking-changes-between-2x-and-3x" and other documents as well. It seems I have to use Microsoft.AspNetCore.Mvc.NewtonsoftJson rather than Microsoft.AspNetCore.Mvc.Formatters.Json.Internal.