Microsoft(MS) 비주얼 스튜디오 2012(2013) 설치 관련
- 발생되는 문제 해결 방법
//=========
* VMDebugger Add-in failed not found
- VMWare 설치하면 생기는 Virtual Machine Debugger 문제
- 사용하지 않는 방법 :
- Tools -> Add-in Manager 에서 체크 해제
//==========
* cannot open include file 'winres.h'
-> 해결 방법: Windows SDK 설치
Windows Software Development Kit (SDK) for Windows 8.1 다운로드 주소
http://msdn.microsoft.com/en-us/windows/desktop/bg162891
- Window 7 지원, 단독설치 다운로드 기능 있음(400M)
//==================
* targetver.h: fatal error C1083: Cannot open include file: 'SDKDDKVer.h': No such file or directory
winsdkver.h 파일을 찾을 없다고 나올때 해결 방법 -> 경로 설정
* Include 폴더 경로 추가
$(WindowsSdkDir)include\shared;
$(WindowsSdkDir)include\um;
* Library 폴더 경로 추가
- 'kernel32.lib' 이 없다고 나오는 문제
- fatal error LNK1104: cannot open file 'kernel32.lib'
WinSDK8.0 : $(WindowsSdkDir)Lib\win8\um\x86
WinSDK8.1 : $(WindowsSdkDir)Lib\winv6.3\um\x86 <-- VS2013
//
- 이후의 모든 프로젝트에 적용되도록 경로 설정 하는 방법(기본 전역 설정)
Property Manager -> 프로젝트 이름 -> 빌드종류(Debug | Win32 , Release ..) 아무거나
-> Microsoft.Cpp.Win32.user -> 우클릭 -> Properties
-> Configuration Properties -> VC++ Directories
- 이 상태에서 Include와 Library Directories를 설정한다.
- 방법2 : 파일 편집하는 방법 <- 더 간편
%home%\AppData\Local\Microsoft\MSBuild\v4.0\Microsoft.Cpp.Win32.user.props
64bit의 경우는 'Microsoft.Cpp.x64.user.props' (Microsoft.Cpp.<Platform>.user.props)
<IncludePath> , <LibraryPath> 태그 찾아서 편집
//
Visual studio Extension, Addin, Tool 업데이트 확인 중지 하는 방법
메뉴 -> Options -> Environment -> Extensions and Updates
-> Autimoticcally check for updates : 체크 해제
//=======================
* Visual studio 2012 MSDN Help 설치
- 다우로드 주소
http://www.microsoft.com/en-us/download/details.aspx?id=34794
- 설치
- 다운로드한 이미지 마운트 : VS2012 Documentation.iso
- Visual studio 메뉴 -> Help -> Add and Remove Help Contents
-> Installation source : -> Disk 선택 -> 마운트한 경로의 helpcontentsetup.msha 선택
- 로컬 뷰어로 Help 보기 설정
- 온라인 뷰어 사용하지 않기
Help -> Set Help Preference -> Launch in Help Viewer 선택
//=======================
* XP 호환 프로그램 만들기
- VS 2012에서 Windows XP에서 실행 가능하도록 빌드
http://codens.info/638
//=======================
Visual Studio 2010, 2012, 2013 의 성능 비교
//=======================
// 개념
visual studio Blend : 예쁜 UI 디자인 툴
visual studio 'Security development Lifecycle'(SDL)
- 코드 보안을 향상을 위한 코드 체크 옵션
visual studio 'Support Restart Manager'
- 프로그램이 비정상적인 종료시 데이터 자동 저장및 복구가 가능하도록 하는 기능
- IE의 세션 복구와 비슷한 기능
Windows Azure (윈도 애저) http://www.windowsazure.com
- Microsoft 데이터 센터에서 프로그램을 빌드, 배포, 관리할 수 있는 클라우드 플랫폼
- 프로그램을 개발해서 클라우드 서버에 올리고 이것을 실행하는 일련의 솔루션
'Code > Desktop' 카테고리의 다른 글
Visual Studio 2013 (2012) 에서 XP 호환 프로그램 만들기 (4) | 2014.01.18 |
---|---|
Visual Studio 인텔리센스 속도 향상 (0) | 2014.01.16 |
[prj] HTML 태그, 속성 정리 삭제 유틸 프로그램 (0) | 2014.01.15 |
콘솔 프로그램에서 끝내기전에 멈추는 방법 (0) | 2014.01.14 |
CPP HTML Parser (0) | 2014.01.14 |