Hi All,
Please Answer me.
What is difference between bin and obj folders in .net application?why these two folders?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
SenthilkumarPosted Apr 11, 2012, 7:04 AM
Sam HobbsPosted Apr 11, 2012, 3:35 PM
Jignesh TrivediPosted Apr 11, 2012, 7:39 AM
The bin\ folder holds the results of the build: the binaries to distribute or archive, the XML documentation file, necessary dependencies and debug symbols.In other word Bin is where the final compiled code is stored.
The obj\ folder contains temporary files created during compilation. They are preserved so for an incremental build, the compiler can skip individual source files if they haven't changed and use the temporary files instead. That's faster :)
The obj folders would NOT be used for running the application - they are used for creating the end binaries in the bin folders.
hope this help.