We use Visual Studio database projects and SSDT to version and deploy our SQL Server schema. We compile the project to a dacpac file and then use SqlPackage.exe to publish that dacpac against a SQL Server (2008 R2) instance as necessary.
We recently upgraded from VS 2013 to VS 2015. For a while we were still using a copy of the old SqlPackage.exe (from VS 2013 SSDT) to deploy our dacpacs. However, we just had some new employees start and discovered that, on their machines, deploying a dacpac with the old SqlPackage.exe fails. (VS 2013 has never been installed and DLLs are missing.) I replaced the old SqlPackage.exe (and associated files) with the new SqlPackage.exe (and associated files). The dacpacs now deploy successfully.
The problem: Deploying the dacpac with the new version of SqlPackage.exe does not deploy column defaults (e.g. NEWSEQUENTIALID()). This is clearly unacceptable but reverting to the old version of SqlPackage.exe breaks the deploy for some of our devs. Is this a bug with SSDT or a breaking change that I'm not aware of? Is there some configuration that may be set incorrectly?