testapps/docker/WebAppNet8/Program.cs (
4
lines of code) (
raw
):
var builder = WebApplication.CreateBuilder(args); var app = builder.Build(); app.MapGet("/", () => "Test .NET 8"); app.Run();