Visual Studio (2008) 'Clean Solution' Option

前端 未结 7 2066
一个人的身影
一个人的身影 2020-11-29 05:23

What does this option do? It is accessible from the Build menu.

7条回答
  •  南笙
    南笙 (楼主)
    2020-11-29 06:25

    It deletes all the object code generated during previous compilation/build. It deletes all below kind of files:-

    *.obj - object code

    *.pdb - program debug databse file

    *.bsc - source browser databse

    *.ilk - incremental linker file

    *.sbr - source browser intermediate file

    *.idb - rebuild dependency file

    *.lib - library file

    *.exe - executable

    JFYI - Even a Rebuild All command will do all this and then go on to build the complete set of source files.

    -AD

提交回复
热议问题