Misuzilla.AspNetCore.Server.Cgi
1.0.0
Implementation of a CGI server adapter for ASP.NET Core.
This library will enable your ASP.NET Core application to be used with CGI.
Note
This is a proof of concept, a toy, and is not intended for use in a production environment.
Call UseCGI extension method of WebHost builder.
var builder = WebApplication.CreateBuilder(args);
// Add: Enable CGI server implementation for ASP.NET Core.
builder.WebHost.UseCgi();
var app = builder.Build();
app.MapGet("/", () => "It works!");
app.Run();MIT License