Recs.
Updated
With ASP.NET Core you can build web apps, web services, IoT apps, and mobile backends. It can be used with Visual Studio, or with Visual Studio Code.
See article on Medium Getting started with ASP .NET Core.
Also see Tutorial: Create a web API with ASP.NET Core MVC and An awesome guide on how to build RESTful APIs with ASP.NET Core.
.NET 6 simplifies API creation with the Minimal API.
SpecsUpdate
Pros
Pro JSON optimization
In .NET Core 2.1 and 3.0, new APIs are added that make it possible to write JSON APIs that require less memory, using Span<T> and UTF8 strings, and improve throughput of applications like Kestrel, ASP.NET Core web server. See also Utf8JsonReader.
Pro Built in Dependency Injection
Where in the old ASP.NET we had to rely on 3rd-party solutions, Dependency Injection is now built in.
Read Implementing an Effective Architecture for ASP.NET Core Web API.
Cons
Recommendations
Comments
Flagged Pros + Cons
Pro Multi Platform
Can run on Windows, Linux and Mac (also Visual Studio Code editor).
