Asp.net – Error while validating the service descriptor 'ServiceType:
I am trying to migrate from .NET CORE 3 Web API to .NET CORE 7 Web API, here is my program.cs code: var builder = WebApplication.CreateBuilder(args); builder.Services.AddSpaStaticFiles(configuration => { configuration.RootPath = "ClientApp/dist"; }); // Add services to the container. //…