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

Unlock the full course today

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

.NET Core templates

.NET Core templates

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

Start my 1-month free trial

.NET Core templates

- [Instructor] To create our startup project, we'll be using the .NET Core CLI which is a new cross-platform tool chain used to develop .NET Core apps. The .NET Core CLI supports different programming languages like C#, Visual Basic, and F#. Also by using the .NET Core CLI, you can create different config files like gitignore, globaljson, or even create solution files. The .NET Core CLI comes with different application templates and some of the most used ones are mvc, which is used to create ASP.NET Core M-V-C apps. Webapp, which is used to create ASP.NET Core web applications. Angular for ASP.NET Core with Angular, and react for ASP.NET Core with React.js. There are also other commands like reactredux for creating ASP.NET Core with React.js and Redux, and even webapi for ASP.NET Core Web API apps. To create a new template, we use the dotnet new command. This is the command that we use when we want to use a default…

Contents