From the course: ASP.NET Core: Working with Azure Tables

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Setting up the ASP.NET Core console application

Setting up the ASP.NET Core console application - ASP.NET Core Tutorial

From the course: ASP.NET Core: Working with Azure Tables

Start my 1-month free trial

Setting up the ASP.NET Core console application

- [Instructor] Now that you have learned how to set up the Azure development environment, it's time for you to learn how to set up the local environment. So for that, you'll first create an empty ASP.NET core console application, then install the necessary packages. And by the end of this part, you'll add a custom entity. So let's go to Visual Studio and see this in action. In Visual Studio, go to file, then new, then select the project option. From the options on the right, search for console app, the .NET core, and then click next. Here I'll name this project employee management, and then I'll leave the solution name to be employee management as well. Then click the create button to create this project. An ASP.NET core console application by default comes with a single file. That is the program.cs, and inside here, you can see the main method, which is also known as the entry point for .NET applications. Now let…

Contents