mirror of
https://gitlab01.pm.org.ru/developers/tnt/dotnet/app01-dotnet-v7.git
synced 2026-01-12 06:34:38 +08:00
- /App01/ Properties/launchSettings.json - /App01/App01.csproj - /App01/Program.cs - /Program.cs - /App01.csproj - / Properties/launchSettings.json
6 lines
144 B
C#
6 lines
144 B
C#
var builder = WebApplication.CreateBuilder(args);
|
|
var app = builder.Build();
|
|
|
|
app.MapGet("/", () => "APP01 .NETv7 in Docker!");
|
|
|
|
app.Run(); |