The .Net Core cross platform modern
.NET Core is the modern, cross-platform successor to .NET Framework, first released in 2016. It runs on Windows, Linux, and macOS.
Key Advantages
Section titled “Key Advantages”- Cross-platform: Same code runs on all major OS
- Open source: Full source code on GitHub
- Performance: Highly optimized for modern hardware
- Side-by-side installation: Different versions can coexist
- Self-contained deployments: Include runtime with app
Supported Application Types
Section titled “Supported Application Types”- ASP.NET Core web applications
- Console applications
- Microservices
- Cloud-native applications
# Create a new .NET Core console appdotnet new console -n MyCoreAppcd MyCoreAppdotnet run