Visual C++ Express How do I just run the app?

前端 未结 4 901
时光说笑
时光说笑 2021-01-25 11:52

I don\'t see how to just run an app in Visual C++ Express. Debug option is right there but how about running the app? I checked each button on above and right clicked everythi

4条回答
  •  我在风中等你
    2021-01-25 12:24

    You can change the Solution Configuration to 'Release', which strips the majority of debugging information, but no matter what you do, if you execute it within the IDE it will take control of it to a certain extent.

    If I want to run a console app without interference from the IDE I just open another command prompt, cd to the debug/release directory (as appropriate) and execute it from there.

提交回复
热议问题