I had a very basic question.
When we compile VS 2005 C# application, it creates two folder. One is Bin folder and other one is Obj folder . Doe any one know why it creates Obj folder....I tried to find out the docs for it but could not find it....
|
I had a very basic question. When we compile VS 2005 C# application, it creates two folder. One is Bin folder and other one is Obj folder . Doe any one know why it creates Obj folder....I tried to find out the docs for it but could not find it.... |
|||||
|
|
Devenv will compile whatever projects you have configured for debugging using the appropriate compilers. The compilers create obj directories as a temporary files. bin will contain a folder for each of your solution configuration (debug is the default) which contains the build outputs for your project. |
|||
|
|
|
The The |
||||
|