using ConstructorApp.DataAccessLayer.Concrete; using Microsoft.EntityFrameworkCore; using ConstructorApp.BusinessLayer.Extensions; using ConstructorAppApi.Hubs; using ConstructorApp.EntityLayer.Entities; using Microsoft.AspNetCore.Identity; var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddCors(opt => { opt.AddPolicy("CorsPolicy", builder => { builder.AllowAnyHeader() .AllowAnyMethod() .SetIsOriginAllowed((host) => true) .AllowCredentials(); }); }); builder.Services.AddSignalR(); builder.Services.AddDbContext(options => options.UseSqlServer(builder.Configuration.GetConnectionString("mssql"))); // AutoMapper ve diğer bağımlılıklar builder.Services.AddIdentity() .AddEntityFrameworkStores() .AddDefaultTokenProviders(); builder.Services.AddAutoMapper(AppDomain.CurrentDomain.GetAssemblies()); builder.Services.AddBusinessLayerDependencies(); builder.Services.AddControllers(); // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); var app = builder.Build(); // Configure the HTTP request pipeline. //if (app.Environment.IsDevelopment()) //{ // app.UseSwagger(); // app.UseSwaggerUI(); //} app.UseSwagger(); app.UseSwaggerUI(); app.UseCors("CorsPolicy"); //app.UseHttpsRedirection(); app.UseAuthorization(); app.MapControllers(); app.MapHub("/signalrhub"); app.Run();