Let's start this chapter by creating an ASP.NET Core web application. I am assuming that you have Visual Studio 2017 or a later version installed in your development environment. Follow these steps to create the application:
- Open Visual Studio and click on the menu item by navigating to File | New | Project.
- Navigate to Visual C# from the installed template and select Web.
- Then, select ASP.NET Core Web Application and enter the application name as My Todo, as shown in the following screenshot:
- Select the ASP.NET Core Empty template and click on Ok to create the ...