Using Visual Studio 2015 and TFS 2012.
We use a TFS build server to build and deploy our project. Building and deploying the dacpac for our database takes up most of our deployment time. A lot of times, there are no changes to the database.
Is it possible to not have the dacpac build when there are no changes to the database?
There isn't anything built in but you can do something yourself to stop it being built/deployed - I have seen people store a version in the database (table or extended property if you like) then also a version in source control - if they are the same skip the build/deploy step - fairly trivial to set up.
A couple of things to bear in mind:
How long does it take?
Have you looked at why it is too slow?
Ed