From the course: Deploying ASP.NET Core Applications

Unlock the full course today

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

Project setup

Project setup

From the course: Deploying ASP.NET Core Applications

Start my 1-month free trial

Project setup

- [Instructor] To follow along with this course, you can use your own ASP.NET Core project that you wanna deploy, or you can create one using the templates included in Visual Studio. To create one from scratch, use file, new project, and pick ASP.NET Core Web Application, I'll call this HelloCoreWorld. In this case I have ASP.NET Core 2.1 installed, I'm using the ASP.NET Core MVC template, and I didn't pick any authentication just to keep the project simple. After you click OK, the project is scaffolded and you get all the files you need to get a project up and running. If you're not using Visual Studio, you can do the same thing on the command line. You can use dotnet new mvc to create the project using the same template if you're using Visual Studio code or another editor.

Contents