aspnet-core
Installation
SKILL.md
ASP.NET Core
Cross-platform, high-performance framework for building modern web apps.
When to Use
- High-performance APIs (one of the fastest benchmarks)
- Enterprise applications
- Microservices
- Real-time apps (SignalR)
Quick Start
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/", () => "Hello World!");