- Installing .NET Core on Linux/Ubuntu 16.04
- Create New Project In Ubuntu/Linux using .Net Core
- Create Asp.Net MVC Project in Ubuntu/Linux using .Net Core
Previously I had shown CRUD operations Using Asp.Net MVC Core with Visual studio 2017 in Windows.
- 01 - Starting with Asp.Net Core using Visual Studio
- 02 - Starting with Asp.Net Core using Visual Studio to Display Employee List
- 03 - Starting with Asp.Net Core using Visual Studio to Insert New Employee
- 04 - Starting with Asp.Net Core using Visual Studio to Edit Employee
- 05 - Starting with Asp.Net Core using Visual Studio to Delete Employee
- 06 - Starting with Asp.Net Core using Visual Studio Jquery DataTables
Create a folder in Ubuntu and right click on it and select Open in Terminal.
Now in the terminal type the below commands.
dotnet new MVC
the above command creates a new .Net Core MVC project.
open the folder from VS Code and open ProjectName.csproj file. Ones it is opened you can restore.
or use the below command to restore dotnet as shown.
dotnet restore
in VS Code press F5 or in the command terminal use
dotnet run
No comments:
Post a Comment