Monday, January 24, 2011

visual studio 2010 C++ note

Problem: start without debugging missing in visual studio 2010 C++
When use ctrl-F5, it automatically closes console window.

To fix this, do the following:
  • right click the project name,
  • go to Properties page,
  • expand Configuration Properties -> Linker -> System,
  • select Console (/SUBSYSTEM:CONSOLE) in SubSystem dropdown.
There is no start without debugging icon, so only way to active it is ctrl-F5.

No comments:

Post a Comment