diff --git a/csharp/App/Backend/Program.cs b/csharp/App/Backend/Program.cs index 686e29d7f..385c6250b 100644 --- a/csharp/App/Backend/Program.cs +++ b/csharp/App/Backend/Program.cs @@ -22,7 +22,6 @@ public static class Program c.SupportNonNullableReferenceTypes(); }); - var app = builder.Build(); if (app.Environment.IsDevelopment()) @@ -31,7 +30,7 @@ public static class Program app.UseSwaggerUI(); } - app.UseCors(p => p.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod()) ; + //app.UseCors(p => p.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod()) ; app.UseHttpsRedirection(); //app.UseAuthorization(); app.MapControllers();