Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
Confirmed. In fact MS explicitly discourages you from puttin .opt and others under version control, since they are specific to the local machine. You can look it up in the MSDN Library. Note that a .MAK file is not used by MSVC, unless the project is a "Makefile project". In general the Makefiles generated by MSVC should be avoided; to build from the command line use "msdev myproj.dsp /make "name of configuration". >-- Original Message -- >From: "Ricardo Fukasawa" <fukasawa at globo.com> >To: "CVSNT" <cvsnt at cvsnt.org cvsnt downloads at march-hare.com @CVSNT on Twitter CVSNT on Facebook> >Subject: Re: [cvsnt] OT: Which VS6 files to store in CVS? >Date: Thu, 27 Feb 2003 20:21:47 -0300 > > >Well, I am not an experienced Visual C++6 user, but I have been using CVS >to >store my Visual C++6 programs and I only keep there the .c, .cpp, .h, .dsw >and .dsp files. > >All the rest (.ncb, .opt, .plg, .ilk, .pch, .sbr, .pdb, .idb, etc.) I keep >out of CVS and Visual C rebuilds them without a problem.