The previous chapter covered ASP.NET Core in great detail while building the AutoLotMVC_Core2 web application. This chapter completes the coverage of ASP.NET Core by creating the AutoLotAPI_Core2 RESTful service.
You will begin by using the ASP.NET Core Web API template (yes, the template is still named Web API even though it’s all one framework now) to create the solution and project. Then you will examine the project organization and startup options, update the NuGet packages, ...