Comments
2 comments
-
Hi Scott,
Thank you for your feedback!
Could you please suggest this enhancement on our Uservoice forum at https://redgate.uservoice.com/forums/267000-sql-change-automation
Kind Regards, -
@skuhn - Thanks for the feedback. I've shared this with the development team working on our vNext solution. We're going to try to move config out of the sqlproj partly to make it more merge friendly. This might be something that goes public in H1 next year, but we haven't got a hard release schedule yet.
Add comment
Please sign in to leave a comment.
It appears that list of static tables included in a project are stored as a single line entry in the *.sqlproj file. This often results in merge conflicts as it is a one line difference. (at least using git) The suggestion would be to make the entry a collection instead of a single XML node with each object in a subnode, like the following, which will facilitate more automatic merges in source control.
<IncludeObjectsInDataSync>
<Object></Object>
<Object></Object>
</IncludeObjectsInDataSync>
Scott