What is obj folder generated for?

C#.NetVisual StudioBuild Process

C# Problem Overview


> Possible Duplicate:
> What are the obj and bin folders (created by Visual Studio) used for?

The default output path for any project is Visual studio is bin/Debug, but I have noticed that obj folder is also generated which again contains dll and pdb files. Can someone tell me why is this folder generated?

C# Solutions


Solution 1 - C#

"obj" folder is used to store temporary object files and other files used to create the final binary.

Further reading here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionNazgulView Question on Stackoverflow
Solution 1 - C#casademoraView Answer on Stackoverflow