10 lines
249 B
C#
10 lines
249 B
C#
int port = 3000;
|
|
var app = WebApplication.Create();
|
|
|
|
app.MapGet("/", () => "Hello World");
|
|
|
|
Console.WriteLine("Willkommen zu Aufgabe18");
|
|
Console.WriteLine($"Example app listening on port {port}");
|
|
|
|
await app.RunAsync($"https://localhost:{port}/");
|