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.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
objdirectory 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?