User190551098 posted
Hi Team,
while using this i am getting error in asp.net core 3.1 start up file
any workaround?
i tried below
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddApplicationInsightsTelemetry(Configuration);
services.AddMvc();
// Add Kendo UI services to the services container
services.AddKendo();
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
loggerFactory.AddDebug();
…
// Configure Kendo UI
app.UseKendo(env);
}