6dff8e7777
- Domain, Infrastructure, Application (class libraries) - Web (ASP.NET Core empty) - Admin (Blazor Server) - All net8.0 target framework - Project references configured Co-Authored-By: Claude <noreply@anthropic.com>
7 lines
129 B
C#
7 lines
129 B
C#
var builder = WebApplication.CreateBuilder(args);
|
|
var app = builder.Build();
|
|
|
|
app.MapGet("/", () => "Hello World!");
|
|
|
|
app.Run();
|