Possible Duplicate:
What are the obj and bin folders (created by Visual Studio) used for?可能的重复:obj和bin文件夹(由Visual Studio创建)用于什么?
The default output path for any project is Visual studio is bin/Debug
, but I have noticed that obj
folder is also generated which again contains dll
and pdb
files. Can someone tell me why is this folder generated?
任何项目的默认输出路径都是Visual studio的bin/Debug,但是我注意到obj文件夹也是生成的,它同样包含dll和pdb文件。有人能告诉我为什么生成这个文件夹吗?
1 个解决方案
#1
86
"obj" folder is used to store temporary object files and other files used to create the final binary.
“obj”文件夹用于存储临时对象文件和用于创建最终二进制文件的其他文件。
Further reading here
进一步阅读这里
#1
86
"obj" folder is used to store temporary object files and other files used to create the final binary.
“obj”文件夹用于存储临时对象文件和用于创建最终二进制文件的其他文件。
Further reading here
进一步阅读这里