From the course: Building Angular and 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.

.NET Core templates

.NET Core templates

From the course: Building Angular and ASP.NET Core Applications

Start my 1-month free trial

.NET Core templates

- [Instructor] To create our app we are going to use the default templates that come with .NET Core and to do so, we are going to use the .NET Core CLI, or the command line interface. The .NET Core CLI is a new cross platform tool chain for developing .NET Core apps. By using the .NET Core CLI, you can build apps on top of programming languages like C#, Visual Basic, and F#. You can also add or modify config files, like gitignore, globaljson, webconfig, or even create solution files. But, what is important in our case is the templates that we can use to build applications. Some of them are the mvc to create ASP.NET Core MVC applications, the angular to create ASP.NET Core Angular apps, or if you want to create React.js apps, in this case you can use the react keyword. You can also use the webapi keywork to create ASP.NET Core Web API projects. So, let us go to Visual Code and see this in action. In here go to File…

Contents