Reputation: 5084
I just can't find this setting in VS 2012, but it is described in the Visual Studio documentation. Is it not available for C# projects? Or where can I find it?
Extensions to Delete on Clean
The Clean option (Build menu) deletes files from the intermediate directory where a project's configuration is built. Files with extensions specified with this property will be deleted when Clean is run or when you perform a rebuild. In addition to files of these extensions in the intermediate directory, the build system will also delete any known output of the build regardless of where it is located (including intermediate outputs such as .obj files). Note that you can specify wildcard characters.
Upvotes: 0
Views: 1140
Reputation: 174457
This is specifically for C++ projects. The topic you linked to is located in the parent topic "Property Pages (C++)" which itself is part of "Visual C++ -> Creating and Managing Visual C++ Projects".
Upvotes: 1