repository question

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
 
W

William DePalo [MVP VC++]

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
 
C

Carl Daniel [VC++ MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top