Article ID: 156513 - Last Review: March 14, 2005 - Revision: 1.1 INFO: Which Visual C++ Files to Add to Source-Code ControlThis article was previously published under Q156513 SUMMARY
The general rule of thumb for adding files from a Visual C++ project to
source-code control is: If the file is text, it is probably OK to add; if
the file is binary, it probably should not be added.
MORE INFORMATION
When checking in files, Visual C++ will automatically prompt you to check
in all files in the Project Workspace Pane plus the project makefile
(.mak). In most cases, these will simply be the source files needed to open
and rebuild your Visual C++ project. You can add binary files to your Visual C++ project. They will appear in the Project Workspace Pane and Visual C++ will attempt to add them to source-code control. In some cases, this is desirable (for instance, bitmaps) and in other cases, this is not desirable (for instance, import libraries). Following is a (non-exhaustive) list of file extensions for files that should be added to source-code control under normal circumstances: .mak, .dsp, .c, .rc, .rc2, .ico, .bmp, .txt, .def, .hpj, .bat, .rtf, .odl, .inf, .reg, .cnt, .cpp, .cxx, .h, .hpp, .hxx, .inl, .tpl, .vtp, and .mst. Following is a (non-exhaustive) list of file extensions for files that should not be added to source-code control under normal circumstances :
.pch, .mdp, .ncb, .clw, .obj, .exe, .aps, .cpl, .awk, .exp, .lib, .idb,
.opt, .pdb, .map, .res, .ilk, .scc, .bsc, .sbr, .dll, and .tlb.
REFERENCES
For additional information, please see the following article in the
Microsoft Knowledge Base:
132340
(http://support.microsoft.com/kb/132340/EN-US/
)
Common File Extensions Used by Visual C++
"Maintaining Makefiles Under Source-Code Control" and "Putting Files Under
Source-Code Control" from the Visual C++ Online documentation.
| Article Translations
|
Back to the top
