What is Builder for SQL Server?
Builder is a tool that allows you to push schema changes from a central database to one or multiple client databases.
Client databases might be disconnected from the central database, they could be running different version of SQL Server,
they could be hosted on-premise or on Azure.
The end product of Builder is an executable package with the schema updates embedded in it. When the package runs on the client machines,
it compares the database on the machine with a snapshot of the master database embedded in it,
identifies schema differences between the two and synchronize them.
Builder is designed to run by users with little database experience. The package, that Builder generates, is self-contained,
with no external dependencies other than the .NET framework. All resources that Builder needs to synchronize the client database are embedded in this package.