Reputation: 1973
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
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
Reputation: 368
The files / directories I exclude are these:
/obj
/bin
/sql
/*.dbmdl
Upvotes: 2