We want to setup a build process to prevent breaking changes on our branch. We have a common library/project being referenced by multiple projects. So that, when a change is made on this common library, all other projects which use it may also build and check for breaking changes. So far, using MSBuild, we have been able to do the other way around. From a project, we can gather all its dependencies. But how could I get all the projects that reference/use the common library with msbuild?We want to setup a build process to prevent bre