I'm getting ready to setup a Visual Studio Database Edition GDR R2 project with source control. Which files (if any), should be excluded from source control?

link|improve this question
1  
Useful information guys - it's always a pain trying to decide which file to exclude from source control. Wouldn't it just be simpler, if the project structure simply contained a directory called something like 'Generated' and use this as the location of any file(s) that do not need to be (Or should not be) placed under source control. Are you listening, Microsoft? – belugabob Aug 26 '09 at 8:48
feedback

4 Answers

up vote 4 down vote accepted

Here is what I ended up with.

[Bb]in
[Dd]ebug
obj
[Rr]elease
*.aps
*.dbmdl
*.eto
*.ncb
*.suo
*.user
_ReSharper.*
link|improve this answer
feedback

The files / directories I exclude are these:

/obj
/bin
/sql
/*.dbmdl
link|improve this answer
feedback

I also exclude the .suo file in the solution folder.

link|improve this answer
feedback

I also avoid the .dbschema files

link|improve this answer
they are exluded automatically when you exclude the sql\ folder – Gerard Oct 21 '10 at 11:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.