repository question

  • Thread starter Thread starter E.T. Grey
  • Start date Start date
E

E.T. Grey

Hi,

I am using CVS as my file repository for some VC projects.

Does any one know which of the solution related files I need to store:

i.e., do I need to store the files with these extensions:

*.suo
*.ncb

tks
 
E.T. Grey said:
I am using CVS as my file repository for some VC projects.

Does any one know which of the solution related files I need to store:

i.e., do I need to store the files with these extensions:

*.suo
*.ncb

See this for a description of the .sln and .suo files

http://msdn.microsoft.com/library/d...fFileTypesFileExtensionsInVisualStudioNET.asp

For what it is worth, I would store both.

The .ncb file is for browsing. There is no harm in deleting it as the
compiler will just go and recreate it as necessary so I wouldn't bother to
store it.

Regards,
Will
 
E.T. Grey said:
Hi,

I am using CVS as my file repository for some VC projects.

Does any one know which of the solution related files I need to store:

i.e., do I need to store the files with these extensions:

*.suo
*.ncb

..suo - solution options file
..ncb - no-compile browser database (aka intellisense)

No, you definitely don't want to store either of those. They're workstation
specific, so unless you're using only a single computer and it's a one-man
project, you don't want 'em in your repository.

-cd
 
Back
Top