A simple question (hopefully). What is the obj directory for in .NET? I mean the directory that is generated besides the bin directory when a build occurs.
Asked
Active
Viewed 504 times
2 Answers
5
The obj
directory is where the compiled object files are created and assembled into assemblies. In essence this is the working directory of the compiler/linker/assembler.
The results get copied to the bin
(binary) directory.
Also See What are the obj and bin folders (created by Visual Studio) used for?
1
The "obj" folder is used to store temporary object files and other files used in order to create the final binary during the compilation process.
The "bin" folder is the output folder for complete binaries (assemblies).

dsgriffin
- 66,495
- 17
- 137
- 137