c# - lukechendev/purecoding GitHub Wiki
Start
Dev environment
Work with "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