Visual Studio 2015 및 ASP.NET 설치하기
- 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 체크
(만약 이미 설치 단계가 넘어갔다면, 제어판 > 프로그램 제거 > Visual Studio Community 2015 > 변경 에서 설치 가능)
2) ASP.NET 5 설치
ASP.NET 5.를 받아 설치한다.
3) Command 창을 열어 아래와 같이 실행한다.
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 버전 또는 전체 버전 중 하나 설치하면 된다.
dnvm upgrade -r coreclr
2) Full .Net Framework 버전 설치
dnvm upgrade -r clr
이렇게 하면.. ASP.NET5 MVC6 개발을 위한 준비가 끝!
이제 프로젝트 생성해서 MVC 개발을 시작하면 된다!
'개발언어 > ASP.NET Core' 카테고리의 다른 글
EntityFramework 관련 주소 링크 (0) | 2020.04.16 |
---|---|
[Icons] Material Design Icons - Handcrafted by our friends from Google (0) | 2016.11.17 |
[Bootstrap] 디자인 사이트(유/무료) CREATIVE-TIM (0) | 2016.11.17 |
Community Open Camp 2016 - 크로스플랫폼으로 다시 태어난 ASP.NET Core 발표자료 (0) | 2016.07.05 |
Get Started with Entity Framework7 Application (0) | 2016.01.18 |