Click here to Skip to main content
15,887,340 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
I've got an extra and empty obj folder in my visual studio project, it was not there from start but just got to be there suddenly, I've googled but got nothing. If someone could tell me some solution, I don't want to just delete it in case it damage the project.
Posted

1 solution

"obj" folder is used to store temporary object files and other files used to create the final binary.As the "bin" folder is the output folder for complete binaries whereas the "obj" folder is used to store temporary object files and other files used to create the final binary.

Anyway, to change the output folders (..\bin\..) go to your project properties, click the "Build" tab, and change the "Output Path" value. There is a different "Output Path" value for each configuration, which you select from the "Configuration" dropdown at the top of the properties page.

(Configurations will be "debug" and "release" by default.)

However, my advice is: Do not change this!
 
Share this answer
 
v2
Comments
suleman115 20-Oct-13 8:43am    
I didn't change Output folder or anything like that, it is not the regular obj folder, its out of the project's main folder, where nothing should be.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900