What is the obj directory used for if I look under the application directory.

  • Thread starter Thread starter Tony Johansson
  • Start date Start date
T

Tony Johansson

Hello!

At the top I have a directory called ConsoleApplication1
Under this one there are three that is named bin, obj and property.
The directory that I only use are those that are located under bin.
So what is the purpose for the obj directory ?

//Tony
 
Peter Duniho said:
In general, the obj directory is where object files are put as the project
is compiled. The bin directory is where the output of the project along
with any dependencies are put, so that the program can actually run.

Of course, you can edit your project to put the files literally anywhere
you want, if you like. But those are the defaults, and most people pretty
much stick to them all of the time.

Pete

So is there any reason to use the files under the obj directory because the
assemblies that I use will also be locaded under the bin directory ?

//Tony
 
Back
Top