Posts

Showing posts with the label ASP.NET Core configuration

Asp .Net Core -Startup Class and the Service Configuration

Ref:  https://code-maze.com/aspnetcore-webapi-best-practices/ In the  Startup  class, there are two methods: the  ConfigureServices  method for registering the services and the  Configure  method for adding the middleware components to the application’s pipeline.  public static class ServiceExtensions     {         public static void ConfigureCors(this IServiceCollection services)         {             services.AddCors(options =>             {                 options.AddPolicy("CorsPolicy",                     builder => builder.AllowAnyOrigin()                     .AllowAnyMethod()                     .AllowAnyHeader()   ...