Visual Studio Express 2012 not building exe in Release folder

后端 未结 3 921
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-19 02:13

I have compiled a simple \'Hello World\' program. The program is successfully compiled without any errors. I can see a working executable in bin folder. But the Release folder o

3条回答
  •  灰色年华
    2021-02-19 02:55

    Make sure you're building the release version, not the debug version. By default, VS will build a Debug build, which will go into the bin\Debug folders.

    For details, see How to: Set Debug and Release Configurations.

提交回复
热议问题