.NET Core 개발 환경 구축 - 2017년 06월 버전
1. DotNet CLI 다운로드 및 설치
C:\>explorer https://dot.net
C:\>dotnet --version
1.0.4
2. Visual Studio Code 다운로드 및 설치
C:\>explorer https://www.visualstudio.com
C:\>code --version
1.12.2
dotnet new
dotnet new console
C# 7.0
dotnet new mvc
ASP.NET Core 1.1
dotnet restore
dotnet build
dotnet run
code .