-
Notifications
You must be signed in to change notification settings - Fork 0
Luke Chen edited this page Jan 25, 2021
·
4 revisions
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
Create and go to the app folder
dotnet new console -o hwapp
code . # launch Visual Studio Code
dotnet restore
dotnet run
Create and go to the app folder
dotnet new mvc -au None -o aspnetapp
code .
dotnet resotre
dotnet run
Go to http://localhost:5000