I've just started dabbling with SSDT and hit an issue already.
My solution consists of 2 databases. Both databases reference each other with the use of synonyms. Thus we have circular references as far as SSDT is concerned.
I'm aware of the design issues with this arrangement so no need to comment on that nor suggest structural changes to the DB's themselves. This is an existing system and I don't have the power to change it structurally.
I'm also aware of the fact SSDT will not allow circular references. There is a workaround here(http://social.msdn.microsoft.com/Forums/en-US/ssdt/thread/5fd12f01-54e6-4e7d-b7e2-14fa9df9a7ef). It suggests to split DB1 into 2 projects DB1 and DB1a for example where DB1a references DB1 and DB2 and make DB2 reference DB1. But I'm unsure how to configure this to work without actually creating an extra database.
I'm thinking my only option is to leave it as 2 projects but set them to ignore unresolved references.