How can I create the request mapping so that all requests GET, POST, PUT, ... and all paths execute the same method.
var application = WebApplication.Create();
application.Map("/", () =>
{
return "This is all I do!";
});
application.Run("http://localhost:8080");
My guess is that there is a wildcard pattern that will work, but i have tried the following without success: "/", "*", "/*" and "/**".