Skip to content
Luke Chen edited this page Jan 25, 2021 · 4 revisions

Start

Dev environment

Visual Studio Code https://code.visualstudio.com/docs https://channel9.msdn.com/Blogs/dotnet/Get-started-VSCode-Csharp-NET-Core-Windows

Install Extensions C#

Download and Install .NET Core SDK

Start a console app

Create and go to the app folder

dotnet new console -o hwapp
code . # launch Visual Studio Code
dotnet restore
dotnet run

Start a ASP.NET Core Web App (MVC)

Create and go to the app folder

dotnet new mvc -au None -o aspnetapp
code .
dotnet resotre
dotnet run

Go to http://localhost:5000

Clone this wiki locally