Rob Boek
Rob Boek

Reputation: 1973

Which files from a VSTS Database Edition GDR R2 project should be excluded from source control?

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?

Upvotes: 6

Views: 482

Answers (4)

jamiet
jamiet

Reputation: 12264

I also avoid the .dbschema files

Upvotes: 0

Rob McCauley
Rob McCauley

Reputation: 538

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

Upvotes: 0

Rob Boek
Rob Boek

Reputation: 1973

Here is what I ended up with.

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

Upvotes: 4

Brad Bell
Brad Bell

Reputation: 368

The files / directories I exclude are these:

/obj
/bin
/sql
/*.dbmdl

Upvotes: 2

Related Questions