본문 바로가기
개발언어/ASP.NET Core

ASP.NET5 MVC6 시작하기 : Visual Studio 2015 및 ASP.NET 설치

by 후쮸아빠 2016. 1. 19.

Visual Studio 2015 및 ASP.NET 설치하기

Sections

  • Visual Studio 2015 개발툴 설치
  • ASP.NET 설치

1. Visual Studio 2015 설치

MVC6 개발을 하기 위해 Visual Studio 2015를 설치한다.
개인 개발자는 Visual Studio Community를 무료로 사용할 수 있으니, 아래의 경로에서 다운 받아 설치하자.
https://www.visualstudio.com/ko-kr

 

2. ASP.NET5 설치

ASP.NET5 설치 방법은 2가지가 있다. 편한 방법대로 설치 하면 된다.

  • Visual Studio 설치 시
  • Command-Line 명령어로 설치

가. Visual Studio 설치 시

1) Visual Studio  설치 옵션 중 Web Developer Tools 체크
  ../_images/web-dev-tools.png 
  (만약 이미 설치 단계가 넘어갔다면, 제어판 > 프로그램 제거 > Visual Studio Community 2015 > 변경 에서 설치 가능)

2) ASP.NET 5 설치 
    ASP.NET 5.를 받아 설치한다.

3)  Command 창을 열어 아래와 같이 실행한다.

   dnvm upgrade

4) 윈도우7 또는 2008 서버의 경우 Visual C++ Redistributable for Visual Studio 2012 Update 4. 설치한다.

나. Command-Line 명령어로 설치

1. .Net Version Manager(DNVM) 설치 

@powershell -NoProfile -ExecutionPolicy unrestricted -Command "&{$Branch='dev';iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.ps1'))}"

2. .Net Execution Environment (DNX)  설치
   Core 버전 또는 전체 버전 중 하나 설치하면 된다.

    1) .Net Core 버전 설치
         dnvm upgrade -r coreclr
    2) Full .Net Framework  버전 설치
         dnvm upgrade -r clr

이렇게 하면.. ASP.NET5 MVC6 개발을 위한 준비가 끝!
이제 프로젝트 생성해서 MVC 개발을 시작하면 된다!