简体   繁体   中英

Visual Studio Express 2012 not building exe in Release folder

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 of the project is totally empty.

I don't know if there is any settings problem or any problem in building. Apparently, I don't see any error.

You can change your build mode in top of your Visual Studio:

在此输入图像描述

Dependently on which mode you build your solution, Visual Studio will generate .exe in either bin\\Debug folder or bin\\Release folder.

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 .

More expanded explanation:

Your output directory of executable file is specified by default to [your_project_directory]\\bin\\Debug for Debug build mode or to [your_project_directory]\\bin\\Release for Release build mode

  • your_project_directory - place where is created your project (there is located *.csproj file)

To switch between default directories Debug/Release use solution proposed here .

But if you want specify your own output directory , follow these steps:

  1. Go to Project -> [MyProjectName] Properties... (or type Alt+F7) and in properties window switch to Build tab (from left panel)
  2. From Configuration combobox select proper build mode (in your case Release ) or select: "All Configurations" - the same options for both build modes
  3. At the end in output path textbox choose folder where you want store executable file (and other created during buil of application)

Screenshot from properties window:

属性

This solution can be useful at least in two cases:

  1. When are you learning and you want not waste space on your disc, then you can specyfy outbut file for all your project to one tmp directory and clean it in some period of time from not necessary files
  2. When your start work with real "huge project" that include many eg .csproj projects your can create Runtime directory to storage all your executable files and files created during build of application

I hope that this description will be helpful.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM