1 files changed, 0 insertions, 32 deletions
diff --git a/LibMatrix.DebugDataValidationApi/Program.cs b/LibMatrix.DebugDataValidationApi/Program.cs
deleted file mode 100644
index cf9dc55..0000000
--- a/LibMatrix.DebugDataValidationApi/Program.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-var builder = WebApplication.CreateBuilder(args);
-
-// Add services to the container.
-
-builder.Services.AddControllers();
-// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
-builder.Services.AddEndpointsApiExplorer();
-builder.Services.AddSwaggerGen();
-builder.Services.AddCors(options =>
-{
- options.AddPolicy(
- "Open",
- policy => policy.AllowAnyOrigin().AllowAnyHeader());
-});
-
-var app = builder.Build();
-
-// Configure the HTTP request pipeline.
-if (app.Environment.IsDevelopment()) {
- app.UseSwagger();
- app.UseSwaggerUI();
-}
-
-// app.UseHttpsRedirection();
-
-app.UseCors("Open");
-
-app.UseAuthorization();
-
-app.MapControllers();
-
-app.Run();
|