어느 가을날의 전환점

VS|Visual Studio Tips (비주얼 스튜디오) 본문

Development

VS|Visual Studio Tips (비주얼 스튜디오)

어느가을빛 2014. 4. 24. 15:46

▶ VC++에서 실행 시 콘솔창이 바로 닫히는 경우.

- 디버그 실행(F5) : 바로 닫힘.

- 디버그 없이 실행(Ctrl + F5) : 바로 안 닫힘("계속하려면 아무 키나 누루십시오..")


- 프로젝트 속성 > 구성 속성 > 링커 > 시스템의  하위 시스템에서 콘솔(/SUBSYSTEM:CONSOLE)을 설정.


# 참고: Visual C++ 2010: Start without debugging automatically closes console window

http://social.msdn.microsoft.com/Forums/vstudio/en-US/868551df-9d87-43cb-b24b-d8665a2ae646/visual-c-2010-start-without-debugging-automatically-closes-console-window?forum=vsdebug


▶ Visual Studio에서 빠르게 파일을 검색 하여 열 수 있는 방법.


탐색 단축키

Ctrl + ',' :   탐색 (파일 및 클래스 등 검색)


Microsoft Visual Studio add on called - Productivity Power Tools.

- http://visualstudiogallery.msdn.microsoft.com/d0d33361-18e2-46c0-8ff2-4adea1e34fef

- Solution Navigator에서 검색 기능 추가.


Nifty Plugins

- https://code.google.com/p/niftyplugins/

- Visual Studio plugins

- NiftySolution: Some handy commands for quickly navigating in a Visual Studio solution, like "open-any-file-in-the-solution" dialog, a toggle header/body file command and build timings.





Comments