Welcome to ASP.NET Core
ASP.NET Core is a cross-platform, high-performance, open-source framework for building modern, cloud-enabled, Internet-connected applications.
Key Features
Cross-Platform
Develop and run your applications on Windows, macOS, and Linux.
High Performance
Built for speed and efficiency, leveraging modern .NET capabilities.
Modern Development
Utilizes C#, Razor, and a rich ecosystem for robust application development.
Cloud-Native
Designed for cloud deployment, including Azure, AWS, and Docker containers.
Unified Programming Model
Combines MVC and Web API into a single programming model.
Dependency Injection
Built-in support for dependency injection, promoting clean code architecture.
Getting Started Example (Minimal API)
Here's a simple "Hello World" example using ASP.NET Core's Minimal APIs:
program.cs:
app.MapGet("/", () => "Hello World!");
app.Run();
Learn More