Programming/Error Clear!
[C++] vs2013 visual c++ language manager package package did not load correctly 에러 해결
Kanais
2021. 11. 2. 14:54
Visual Studio 2012 error: Package 'Visual C++ package' failed to load
When I'm trying to open any solutions that worked fine before in Visual Studio 2012, the error "Package 'Visual C++ package' failed to load" keeps showing up. And the solution can't be op...
stackoverflow.com
Visual 2013으로 개발하다가 위에 에러가 똭! 구글링을 통해 답을 찾았다.
- Visual Studio 를 실행한다.
- 메뉴에서 Tools를 선택하고 External Tools를 선택.
- External Tools 창에서, Add를 클릭하고 새로운 Contents를 생성.
- Title을 Command Prompt로 입력.
- Command 부분에 %comspec% 나 C:\Windows\System32\cmd.exe. 를 입력.
- Arguments 에는 현재 사용하고 있는 Visual Studio의 버전에 맞춰서 경로를 입력한다. "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd.bat" (전 Visual Studio 2013을 사용하므로 12.0 버전).
- Initial directory 에는 우측 버튼을 클릭하여 Project Directory을 선택해준다.
- 이제 OK 버튼만 누르면 끝.
그리고 나서.
- Visual Studio 아이콘을 우클릭해서 자세히 보기에 관리자 권한으로 실행!
- 이제 TOOLS → *Command Prompt** 를 선택해서 Command Prompt 창을 실행한다.
- 커맨드 창에 "devenv /Setup"을 입력!
- 그리고 Visual Studio를 다시 실행하면 잘 실행된다.