views:

295

answers:

4

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?

+2  A: 

The files / directories I exclude are these:

/obj
/bin
/sql
/*.dbmdl
takobell
+4  A: 

Here is what I ended up with.

[Bb]in
[Dd]ebug
obj
[Rr]elease
*.aps
*.dbmdl
*.eto
*.ncb
*.suo
*.user
_ReSharper.*
Rob Boek
A: 

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

Rob McCauley
A: 

I also avoid the .dbschema files

jamiet
they are exluded automatically when you exclude the sql\ folder
Gerard