Initial project setup: solution + 5 projects

- 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>
This commit is contained in:
2026-06-26 14:51:00 +09:00
commit 6dff8e7777
47 changed files with 2704 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/", () => "Hello World!");
app.Run();