Getting Started With ASP.NET Core MVC Apps Using VS Code

In this article, we will discuss how we can create a HelloWorld app with ASP.NET Core 2.0 using Visual Studio Code. We will learn how to create an ASP.NET Core MVC application, how to create new Controller, how to create new View, and how to run the HelloWorld app etc.

In this article, we will see the following,

  • How to create an ASP.Net Core MVC Application
  • How to create new Controller
  • How to create new View
  • How to run the HelloWorld App

Prerequisite

  • .NET Core 2.0 SDK
  • Visual Studio Code
  • VS Code C# extension

If you want to know how to install the new Visual Studio Code in the machine, you can see the easy steps of installation of Visual Studio Code article. Read it from here,

How to create an ASP.Net Core MVC Application

Open Visual Studio Code. Now, you can open the terminal using Ctrl+` keyboard shortcut.

 

Now, you can set the project storing location,

 

Type mkdir SampleMVCApps and Enter on the command line.

 

Type cd SampleMVCApps and Enter in the command line.

 

Type dotnet new MVC and Enter on the command line, given below.

 
 
Go to Explorer window and Open the SampleMVCApps folder in Visual Studio Code.
 

Select Yes to the Warning message "Required assets to build and debug are missing from “SampleMVCApps”. Add them?".

 

Now, you can see the project folder structure.

 

Pressing the F5 button to run the application

How to create new Controller

Go to the Explorer window in VS Code. Right Click the Controllers folder and point to New File, followed by clicking the New File.

 

Now, you can type in controller name as HelloWorldController.cs and press the Enter button.

 

Copy and paste the below code into HelloWorldController.cs
  1. using Microsoft.AspNetCore.Mvc;  
  2.   
  3. namespace SampleMVCApps.Controllers  
  4. {  
  5.     public class HelloWorldController:Controller  
  6.     {  
  7.         public IActionResult Index()  
  8.         {     
  9.             ViewData["Message"]="Hello, This is my view";  
  10.             return View();  
  11.         }  
  12.   
  13.         public IActionResult Welcome()  
  14.         {  
  15.             ViewData["Message"]="Hello, Welcome to HelloWorld Application";  
  16.             return View();  
  17.         }  
  18.     }  
  19. }  

How to create new View

Go to the Explorer window in VS Code. Right Click the Views folder and point to New Folder, followed by clicking the New Folder. Then, add the new folder named HelloWorld.

 

Right-click the HelloWorld folder and point to New File, followed by clicking the New File.
 
 

Now, you can type in View name as Index.cshtml and press the Enter button.

Copy and paste the below code into Views/HelloWorld/Index.cshtml.

  1. @{  
  2.     ViewData["Title"]="Index";  
  3. }  
  4.   
  5. <h2>Index</h2>  
  6. <hr>  
  7.   
  8. <p>@ViewData["Welcome"]</p>  

Similarly, you can create a welcome view. Copy and paste the below code into Views/HelloWorld/Welcome.cshtml.

  1. @{  
  2.     ViewData["Title"]="Welcome";  
  3. }  
  4.   
  5. <h2>Welcome</h2>  
  6. <hr>  
  7.   
  8. <p>@ViewData["HelloWorld"]</p>  

How to run the HelloWorld App

Pressing the F5 button will run the application, as shown in the below screenshot.

 

Conclusion

I hope you understood how to create a HelloWorld App with ASP.NET Core 2.0 using Visual Studio Code. If you have found anything which I missed in this article, please let me know. Please share your valuable feedback or comments and suggestion to improve the future articles.